- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for VerifyPSSWithSaltLen (0.12 sec)
-
lib/fips140/v1.0.0.zip
the salt length. func VerifyPSS(pub *PublicKey, hash fips140.Hash, digest []byte, sig []byte) error { return verifyPSS(pub, hash, digest, sig, pssSaltLengthAutodet) } // VerifyPSS verifies sig with RSASSA-PSS and an expected salt length. func VerifyPSSWithSaltLen(pub *PublicKey, hash fips140.Hash, digest []byte, sig []byte, saltLength int) error { if saltLength < 0 { return errors.New("crypto/rsa: salt length cannot be negative") } return verifyPSS(pub, hash, digest, sig, saltLength) } func verifyPSS(pub...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)