- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for signWithoutSelfTest (0.09 sec)
-
lib/fips140/v1.0.0.zip
mode faster, we could reuse A from GenerateKey. But another thing // that could make it faster is just _not doing a useless self-test_. pub, err := NewPublicKey(k.PublicKey()) if err != nil { return err } return Verify(pub, msg, sig) } func signWithoutSelfTest(priv *PrivateKey, message []byte) []byte { signature := make([]byte, signatureSize) return signWithDom(signature, priv, message, domPrefixPure, "") } func verifyWithoutSelfTes(pub *PublicKey, message, sig []byte) error { return verifyWithDom(pub,...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)