Lines Matching refs:digest
12 /// The digest and public-key algorithms associated with a signature.
14 /// The signature's digest.
16 /// If the signature does not specify a digest, this will be `NID::UNDEF`.
17 pub digest: Nid,
81 /// Returns the `Nid`s of the digest and public key algorithms associated with a signature ID.
88 let mut digest = 0;
90 if ffi::OBJ_find_sigid_algs(self.0, &mut digest, &mut pkey) == 1 {
92 digest: Nid(digest),
1102 assert_eq!(algs.digest, Nid::SHA256);