Skip to content
Snippets Groups Projects
constants.go 131 B
package identity

const (
    PRIVATE_TYPE = IdentityType(0)
    PUBLIC_TYPE  = IdentityType(1)

    PUBLIC_KEY_BYTE_LENGTH = 65
)