Skip to content

Commit

Permalink
Update ed25519.go
Browse files Browse the repository at this point in the history
Co-authored-by: Davis Goodin <[email protected]>
  • Loading branch information
qmuntal and dagood authored Sep 4, 2023
1 parent 580625c commit ccecb07
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ed25519.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ import (
)

const (
// publicKeySize is the size, in bytes, of public keys as used in crypto/ed25519.
// publicKeySizeEd25519 is the size, in bytes, of public keys as used in crypto/ed25519.
publicKeySizeEd25519 = 32
// privateKeySize is the size, in bytes, of private keys as used in crypto/ed25519.
// privateKeySizeEd25519 is the size, in bytes, of private keys as used in crypto/ed25519.
privateKeySizeEd25519 = 64
// signatureSize is the size, in bytes, of signatures generated and verified by crypto/ed25519.
// signatureSizeEd25519 is the size, in bytes, of signatures generated and verified by crypto/ed25519.
signatureSizeEd25519 = 64
// seedSize is the size, in bytes, of private key seeds. These are the private key representations used by RFC 8032.
// seedSizeEd25519 is the size, in bytes, of private key seeds. These are the private key representations used by RFC 8032.
seedSizeEd25519 = 32
)

Expand Down

0 comments on commit ccecb07

Please sign in to comment.