- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for signGeneric (0.17 sec)
-
lib/fips140/v1.0.0.zip
specified in FIPS 186-5, Appendix B.2.4 or RFC 6979, // Section 2.3.4. See RFC 6979, Section 3.5 for the rationale. func bits2octets[P Point[P]](c *Curve[P], hash []byte) []byte { e := bigmod.NewNat() hashToNat(c, e, hash) return e.Bytes(c.N) } func signGeneric[P Point[P]](c *Curve[P], priv *PrivateKey, drbg *hmacDRBG, hash []byte) (*Signature, error) { // FIPS 186-5, Section 6.4.1 k, R, err := randomPoint(c, func(b []byte) error { drbg.Generate(b) return nil }) if err != nil { return nil, err } // kInv...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)