Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for VerifyPSSWithSaltLen (0.18 sec)

  1. lib/fips140/v1.1.0-rc1.zip

    RSASSA-PSS automatically detecting the salt length. func VerifyPSS(pub *PublicKey, hash hash.Hash, digest []byte, sig []byte) error { return verifyPSS(pub, hash, digest, sig, pssSaltLengthAutodet) } // VerifyPSSWithSaltLen verifies sig with RSASSA-PSS and an expected salt length. func VerifyPSSWithSaltLen(pub *PublicKey, hash hash.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,...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top