Documentation
¶
Index ¶
- Variables
- type ECDH
- func FromECDHPrivateKey(key []byte) ECDH
- func FromECDHPrivateKeyDer(der []byte) ECDH
- func FromECDHPrivateKeyWithPassword(key []byte, password string) ECDH
- func FromECDHPublicKey(key []byte) ECDH
- func FromECDHPublicKeyDer(der []byte) ECDH
- func FromPrivateKey(key []byte) ECDH
- func FromPrivateKeyDer(der []byte) ECDH
- func FromPrivateKeyWithPassword(key []byte, password string) ECDH
- func FromPublicKey(key []byte) ECDH
- func FromPublicKeyDer(der []byte) ECDH
- func GenerateKey(curve string) ECDH
- func GenerateKeyWithSeed(reader io.Reader, curve string) ECDH
- func New() ECDH
- func NewECDH() ECDH
- func (this ECDH) AppendError(err ...error) ECDH
- func (this ECDH) CheckKeyPair() bool
- func (this ECDH) CreateECDHPrivateKey() ECDH
- func (this ECDH) CreateECDHPrivateKeyWithPassword(password string, opts ...any) ECDH
- func (this ECDH) CreateECDHPublicKey() ECDH
- func (this ECDH) CreatePrivateKey() ECDH
- func (this ECDH) CreatePrivateKeyWithPassword(password string, opts ...any) ECDH
- func (this ECDH) CreatePublicKey() ECDH
- func (this ECDH) CreateSecretKey() ECDH
- func (this ECDH) Error() error
- func (this ECDH) FromECDHPrivateKey(key []byte) ECDH
- func (this ECDH) FromECDHPrivateKeyDer(der []byte) ECDH
- func (this ECDH) FromECDHPrivateKeyWithPassword(key []byte, password string) ECDH
- func (this ECDH) FromECDHPublicKey(key []byte) ECDH
- func (this ECDH) FromECDHPublicKeyDer(der []byte) ECDH
- func (this ECDH) FromPrivateKey(key []byte) ECDH
- func (this ECDH) FromPrivateKeyDer(der []byte) ECDH
- func (this ECDH) FromPrivateKeyWithPassword(key []byte, password string) ECDH
- func (this ECDH) FromPublicKey(key []byte) ECDH
- func (this ECDH) FromPublicKeyDer(der []byte) ECDH
- func (this ECDH) GenerateKey() ECDH
- func (this ECDH) GenerateKeyWithSeed(reader io.Reader) ECDH
- func (this ECDH) GetCurve() ecdh.Curve
- func (this ECDH) GetErrors() []error
- func (this ECDH) GetKeyData() []byte
- func (this ECDH) GetPrivateKey() *ecdh.PrivateKey
- func (this ECDH) GetPublicKey() *ecdh.PublicKey
- func (this ECDH) GetSecretData() []byte
- func (this ECDH) MakeKeyDer() ECDH
- func (this ECDH) MakePublicKey() ECDH
- func (this ECDH) OnError(fn func([]error)) ECDH
- func (this ECDH) ParseECDHPrivateKeyFromPEM(key []byte) (crypto.PrivateKey, error)
- func (this ECDH) ParseECDHPrivateKeyFromPEMWithPassword(key []byte, password string) (crypto.PrivateKey, error)
- func (this ECDH) ParseECDHPublicKeyFromPEM(key []byte) (crypto.PublicKey, error)
- func (this ECDH) ParsePrivateKeyFromPEM(key []byte) (crypto.PrivateKey, error)
- func (this ECDH) ParsePrivateKeyFromPEMWithPassword(key []byte, password string) (crypto.PrivateKey, error)
- func (this ECDH) ParsePublicKeyFromPEM(key []byte) (crypto.PublicKey, error)
- func (this ECDH) SetCurve(curve string) ECDH
- func (this ECDH) ToBase64String() string
- func (this ECDH) ToBytes() []byte
- func (this ECDH) ToHexString() string
- func (this ECDH) ToKeyBytes() []byte
- func (this ECDH) ToKeyString() string
- func (this ECDH) ToString() string
- func (this ECDH) WithCurve(data ecdh.Curve) ECDH
- func (this ECDH) WithErrors(errs []error) ECDH
- func (this ECDH) WithKeyData(data []byte) ECDH
- func (this ECDH) WithPrivateKey(data *ecdh.PrivateKey) ECDH
- func (this ECDH) WithPublicKey(data *ecdh.PublicKey) ECDH
- func (this ECDH) WithSecretData(data []byte) ECDH
- type Opts
- type PBKDF2Opts
- type ScryptOpts
Constants ¶
This section is empty.
Variables ¶
var ( // Get cipher from name GetCipherFromName = pkcs8.GetCipherFromName // Get hash from name GetHashFromName = pkcs8.GetHashFromName )
var ( ErrKeyMustBePEMEncoded = errors.New("go-cryptobin/ecdh: invalid key: Key must be a PEM encoded PKCS1 or PKCS8 key") ErrNotPrivateKey = errors.New("go-cryptobin/ecdh: key is not a valid ecdh private key") ErrNotPublicKey = errors.New("go-cryptobin/ecdh: key is not a valid ecdh public key") )
Functions ¶
This section is empty.
Types ¶
type ECDH ¶
type ECDH struct {
// error list
Errors []error
// contains filtered or unexported fields
}
*
- ecdh *
- @create 2022-8-7
- @author deatil
func FromECDHPrivateKeyDer ¶
From ECDH PrivateKey Der bytes
func FromECDHPrivateKeyWithPassword ¶
From ECDH PrivateKey bytes With Password
func FromECDHPublicKeyDer ¶
From ECDH PublicKey Der bytes
func FromPrivateKeyWithPassword ¶
From PrivateKey bytes With Password
func GenerateKeyWithSeed ¶
GenerateKey With Seed
func (ECDH) CreateECDHPrivateKey ¶
生成私钥 pem 数据, 库自使用的 asn1 格式 Create PKCS8 PrivateKey PEM data and use the pkg asn1 encode
func (ECDH) CreateECDHPrivateKeyWithPassword ¶
生成 PKCS8 私钥带密码 pem 数据, 库自使用的 asn1 格式 Create PKCS8 PrivateKey PEM data with password and use the pkg asn1 encode
func (ECDH) CreateECDHPublicKey ¶
Create PublicKey PEM data and use the pkg asn1 encode
func (ECDH) CreatePrivateKey ¶
Create PKCS8 PrivateKey PEM data example: obj := New().SetCurve("P256").GenerateKey() priKey := obj.CreatePrivateKey().ToKeyString()
func (ECDH) CreatePrivateKeyWithPassword ¶
Create PKCS8 PrivateKey PEM data with password CreatePrivateKeyWithPassword("123", "AES256CBC", "SHA256")
func (ECDH) CreateSecretKey ¶
Create SecretKey from PrivateKey and PublicKey
func (ECDH) FromECDHPrivateKey ¶
From ECDH PrivateKey bytes
func (ECDH) FromECDHPrivateKeyDer ¶
From ECDH PrivateKey Der bytes
func (ECDH) FromECDHPrivateKeyWithPassword ¶
From ECDH PrivateKey bytes With Password
func (ECDH) FromECDHPublicKey ¶
From ECDH PublicKey bytes
func (ECDH) FromECDHPublicKeyDer ¶
From ECDH PublicKey Der bytes
func (ECDH) FromPrivateKeyDer ¶
From PrivateKey Der bytes
func (ECDH) FromPrivateKeyWithPassword ¶
From PrivateKey bytes With Password
func (ECDH) FromPublicKeyDer ¶
From PublicKey Der bytes
func (ECDH) GenerateKeyWithSeed ¶
GenerateKey With Seed
func (ECDH) ParseECDHPrivateKeyFromPEM ¶
func (this ECDH) ParseECDHPrivateKeyFromPEM(key []byte) (crypto.PrivateKey, error)
Parse ECDH PrivateKey From PEM
func (ECDH) ParseECDHPrivateKeyFromPEMWithPassword ¶
func (this ECDH) ParseECDHPrivateKeyFromPEMWithPassword(key []byte, password string) (crypto.PrivateKey, error)
Parse ECDH PrivateKey From PEM With Password
func (ECDH) ParseECDHPublicKeyFromPEM ¶
Parse ECDH PublicKey From PEM
func (ECDH) ParsePrivateKeyFromPEM ¶
func (this ECDH) ParsePrivateKeyFromPEM(key []byte) (crypto.PrivateKey, error)
Parse PrivateKey From PEM
func (ECDH) ParsePrivateKeyFromPEMWithPassword ¶
func (this ECDH) ParsePrivateKeyFromPEMWithPassword(key []byte, password string) (crypto.PrivateKey, error)
Parse PrivateKey From PEM With Password
func (ECDH) ParsePublicKeyFromPEM ¶
Parse PublicKey From PEM
func (ECDH) WithPrivateKey ¶
func (this ECDH) WithPrivateKey(data *ecdh.PrivateKey) ECDH
set PrivateKey