Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 546 Bytes

File metadata and controls

18 lines (14 loc) · 546 Bytes

Crypt

A simple GoLang package to serialize data

Build Status GoDoc

Example Usage

type TestingStruct struct {
    Num int
    ValueStr string
}

value := TestingStruct(1, "Hello")
serialized, err := SerializeInterfaceToString(value)

deserialized := TestingStruct{}
err = DeserializeStringToInterface(serialized)