- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for NewPrivateKeyWithout (0.41 sec)
-
lib/fips140/v1.0.0-c2097c7c.zip
PublicKey{ N: n, E: e, }, d: dN, p: p, q: q, dP: dP, dQ: dQ, qInv: qInvNat, } if err := checkPrivateKey(pk); err != nil { return nil, err } return pk, nil } // NewPrivateKeyWithout creates a new RSA private key from the given parameters. // // This is meant for deprecated multi-prime keys, and is not FIPS 140 compliant. func NewPrivateKeyWithout(N []byte, e int, d []byte) (*PrivateKey, error) { n, err := bigmod.NewModulus(N) if err != nil { return nil, err } dN, err := bigmod.NewNat().SetBytes(d, n)...Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
PublicKey{ N: n, E: e, }, d: dN, p: p, q: q, dP: dP, dQ: dQ, qInv: qInvNat, } if err := checkPrivateKey(pk); err != nil { return nil, err } return pk, nil } // NewPrivateKeyWithout creates a new RSA private key from the given parameters. // // This is meant for deprecated multi-prime keys, and is not FIPS 140 compliant. func NewPrivateKeyWithout(N []byte, e int, d []byte) (*PrivateKey, error) { n, err := bigmod.NewModulus(N) if err != nil { return nil, err } dN, err := bigmod.NewNat().SetBytes(d, n)...Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)