- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for PublicKey (0.06 sec)
-
api/go1.26.txt
pkg crypto/ecdh, type KeyExchanger interface { Curve, ECDH, PublicKey } #75300 pkg crypto/ecdh, type KeyExchanger interface, Curve() Curve #75300 pkg crypto/ecdh, type KeyExchanger interface, ECDH(*PublicKey) ([]uint8, error) #75300 pkg crypto/ecdh, type KeyExchanger interface, PublicKey() *PublicKey #75300 pkg crypto/ecdsa, type PrivateKey struct, D //deprecated #63963 pkg crypto/ecdsa, type PublicKey struct, X //deprecated #63963Registered: 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
// the lifetime of the PublicKey, which may be undesirable. return &priv.pub } type PublicKey struct { raw [maxPubKeySize]byte p parameters a [maxK * maxL]nttElement t1 [maxK]nttElement // NTT(tâ â 2áµ) tr [64]byte // public key hash } func (pub *PublicKey) Equal(x *PublicKey) bool { size := pubKeySize(pub.p) return pub.p == x.p && subtle.ConstantTimeCompare(pub.raw[:size], x.raw[:size]) == 1 } func (pub *PublicKey) Bytes() []byte { size := pubKeySize(pub.p) return bytes.Clone(pub.raw[:size]) } func...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)