// Copyright 2018-2019 The NATS Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Package nkeys is an Ed25519 based public-key signature system that simplifies keys and seeds // and performs signing and verification. // It also supports encryption via x25519 keys and is compatible with https://pkg.go.dev/golang.org/x/crypto/nacl/box.
package nkeys import // Version is our current version const Version = "0.4.7" // KeyPair provides the central interface to nkeys. type KeyPair interface { Seed() ([]byte, error) PublicKey() (string, error) PrivateKey() ([]byte, error) // Sign is only supported on Non CurveKeyPairs Sign(input []byte) ([]byte, error) // Verify is only supported on Non CurveKeyPairs Verify(input []byte, sig []byte) error Wipe() // Seal is only supported on CurveKeyPair Seal(input []byte, recipient string) ([]byte, error) // SealWithRand is only supported on CurveKeyPair SealWithRand(input []byte, recipient string, rr io.Reader) ([]byte, error) // Open is only supported on CurveKey Open(input []byte, sender string) ([]byte, error) } // CreateUser will create a User typed KeyPair. func () (KeyPair, error) { return CreatePair(PrefixByteUser) } // CreateAccount will create an Account typed KeyPair. func () (KeyPair, error) { return CreatePair(PrefixByteAccount) } // CreateServer will create a Server typed KeyPair. func () (KeyPair, error) { return CreatePair(PrefixByteServer) } // CreateCluster will create a Cluster typed KeyPair. func () (KeyPair, error) { return CreatePair(PrefixByteCluster) } // CreateOperator will create an Operator typed KeyPair. func () (KeyPair, error) { return CreatePair(PrefixByteOperator) } // FromPublicKey will create a KeyPair capable of verifying signatures. func ( string) (KeyPair, error) { , := decode([]byte()) if != nil { return nil, } := PrefixByte([0]) if := checkValidPublicPrefixByte(); != nil { return nil, ErrInvalidPublicKey } return &pub{, [1:]}, nil } // FromSeed will create a KeyPair capable of signing and verifying signatures. func ( []byte) (KeyPair, error) { , , := DecodeSeed() if != nil { return nil, } if == PrefixByteCurve { return FromCurveSeed() } := append([]byte{}, ...) return &kp{}, nil } // FromRawSeed will create a KeyPair from the raw 32 byte seed for a given type. func ( PrefixByte, []byte) (KeyPair, error) { , := EncodeSeed(, ) if != nil { return nil, } return &kp{}, nil }