- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for newPublicKey (0.08 sec)
-
api/go1.26.txt
pkg crypto/hpke, type KEM interface, ID() uint16 #75300 pkg crypto/hpke, type KEM interface, NewPrivateKey([]uint8) (PrivateKey, error) #75300 pkg crypto/hpke, type KEM interface, NewPublicKey([]uint8) (PublicKey, error) #75300 pkg crypto/hpke, type KEM interface, unexported methods #75300 pkg crypto/hpke, type PrivateKey interface, Bytes() ([]uint8, error) #75300
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 19:57:52 UTC 2025 - 11.5K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
nil } var errInvalidPublicKeyL = errors.New("mldsa: invalid public key length") func NewPublicKey44(pk []byte) (*PublicKey, error) { return newPublicKey(pk, params44) } func NewPublicKey65(pk []byte) (*PublicKey, error) { return newPublicKey(pk, params65) } func NewPublicKey87(pk []byte) (*PublicKey, error) { return newPublicKey(pk, params87) } func newPublicKey(pk []byte, p parameters) (*PublicKey, error) { k, l := p.k, p.l t1 := make([][n]uint16, k, maxK) ρ, err := pkDecode(pk, t1, p) if err != nil...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0) -
lib/fips140/v1.0.0-c2097c7c.zip
because it takes > 20% of the time of a signature generation. // Signing doesn't use it as a point anyway. copy(priv.pub[:], privBytes[32:]) copy(priv.prefix[:], h[32:]) return priv, nil } func NewPublicKey(pub []byte) (*PublicKey, error) { p := &PublicKey{} return newPublicKey(p, pub) } func newPublicKey(pub *PublicKey, pubBytes []byte) (*PublicKey, error) { if l := len(pubBytes); l != publicKeySize { return nil, errors.New("ed25519: bad public key length: " + strconv.Itoa(l)) } // SetBytes checks...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0)