Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for VerifyPSS (0.15 sec)

  1. lib/fips140/v1.0.0.zip

    priv.pub.Size(); emLen < k { emNew := make([]byte, k) copy(emNew[k-emLen:], em) em = emNew } return decrypt(priv, em, withCheck) } // VerifyPSS verifies sig with RSASSA-PSS automatically detecting 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,...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
  2. api/go1.2.txt

    pkg crypto/rsa, const PSSSaltLengthEqualsHash = -1
    pkg crypto/rsa, const PSSSaltLengthEqualsHash ideal-int
    pkg crypto/rsa, func SignPSS(io.Reader, *PrivateKey, crypto.Hash, []uint8, *PSSOptions) ([]uint8, error)
    pkg crypto/rsa, func VerifyPSS(*PublicKey, crypto.Hash, []uint8, []uint8, *PSSOptions) error
    pkg crypto/rsa, type PSSOptions struct
    pkg crypto/rsa, type PSSOptions struct, SaltLength int
    pkg crypto/sha1, func Sum([]uint8) [20]uint8
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top