mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-01-14 11:53:13 +00:00
9 lines
221 B
Go
9 lines
221 B
Go
package types
|
|
|
|
const (
|
|
// PubKeyLength represents the length (in bytes) of an uncompressed public key
|
|
PubKeyLength = 512 / 8
|
|
// AesKeyLength represents the length (in bytes) of an private key
|
|
AesKeyLength = 256 / 8
|
|
)
|