Home | History | Annotate | Download | only in crypto

Lines Matching refs:signature

26 // The SignatureVerifier class verifies a signature using a bare public key
41 // Initiates a signature verification operation. This should be followed
45 // The signature algorithm is specified as a DER encoded ASN.1
51 // The signature is encoded according to the signature algorithm, but it
53 // Note: An RSA signature is actually a big integer. It must be in
64 const uint8* signature,
69 // Initiates a RSA-PSS signature verification operation. This should be
72 // The RSA-PSS signature algorithm parameters are specified with the
75 // An RSA-PSS signature is a nonnegative integer encoded as a byte string
88 const uint8* signature,
93 // Feeds a piece of the data to the signature verifier.
96 // Concludes a signature verification operation. Returns true if the
97 // signature is valid. Returns false if the signature is invalid or an
106 // const uint8* signature,
114 const uint8* signature,
132 // Used for all signature types except RSA-PSS.