Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for VerifyPSSWithSaltLen (0.19 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)
  2. lib/fips140/v1.0.0-c2097c7c.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 Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
Back to top