libs5-go/types/registry.go

16 lines
299 B
Go
Raw Normal View History

2024-01-03 08:46:30 +00:00
package types
type RegistryType int
const (
RegistryTypeCID RegistryType = 0x5a
RegistryTypeEncryptedCID RegistryType = 0x5e
)
2024-01-03 08:57:39 +00:00
var RegistryTypeMap = map[RegistryType]string{
RegistryTypeCID: "CID",
RegistryTypeEncryptedCID: "EncryptedCID",
}
2024-01-10 11:21:03 +00:00
const RegistryMaxDataSize = 64