Skip to content

Commit

Permalink
fix: typo in Ed25519 functions
Browse files Browse the repository at this point in the history
  • Loading branch information
gdams committed Dec 18, 2024
1 parent 65f2a3a commit 4a51bc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ed25519.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func (k *PrivateKeyEd25519) Public() (*PublicKeyEd25519, error) {
if err := extractPKEYPubEd25519(k._pkey, pub); err != nil {
return nil, err
}
pubk, err := NewPublicKeyEd25119(pub)
pubk, err := NewPublicKeyEd25519(pub)
if err != nil {
return nil, err
}
Expand All @@ -108,14 +108,14 @@ func GenerateKeyEd25519() (*PrivateKeyEd25519, error) {
return priv, nil
}

func NewPrivateKeyEd25119(priv []byte) (*PrivateKeyEd25519, error) {
func NewPrivateKeyEd25519(priv []byte) (*PrivateKeyEd25519, error) {
if len(priv) != privateKeySizeEd25519 {
panic("ed25519: bad private key length: " + strconv.Itoa(len(priv)))
}
return NewPrivateKeyEd25519FromSeed(priv[:seedSizeEd25519])
}

func NewPublicKeyEd25119(pub []byte) (*PublicKeyEd25519, error) {
func NewPublicKeyEd25519(pub []byte) (*PublicKeyEd25519, error) {
if len(pub) != publicKeySizeEd25519 {
panic("ed25519: bad public key length: " + strconv.Itoa(len(pub)))
}
Expand Down
2 changes: 1 addition & 1 deletion ed25519_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func TestEd25519Malleability(t *testing.T) {
0xb1, 0x08, 0xc3, 0xbd, 0xae, 0x36, 0x9e, 0xf5, 0x49, 0xfa,
}

pub, err := openssl.NewPublicKeyEd25119(publicKey)
pub, err := openssl.NewPublicKeyEd25519(publicKey)
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit 4a51bc2

Please sign in to comment.