- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for checkPrivateKey (0.12 sec)
-
lib/fips140/v1.0.0.zip
priv.dP == nil { return } P = priv.p.Nat().Bytes(priv.p) Q = priv.q.Nat().Bytes(priv.q) dP = bytes.Clone(priv.dP) dQ = bytes.Clone(priv.dQ) qInv = priv.qInv.Bytes(priv.p) return } // checkPrivateKey is called by the NewPrivateKey and GenerateKey functions, and // is allowed to modify priv.fipsApproved. func checkPrivateKey(priv *PrivateKey) error { priv.fipsApproved = true if fipsApproved, err := checkPublicKey(&priv.pub); err != nil { return err } else if !fipsApproved { priv.fipsApproved = false }...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)