2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-12 23:55:03 +00:00

9 lines
221 B
Go
Raw Normal View History

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
)