Lines Matching defs:encoded
64 * initialized array containing the DER encoded DigestInfo for the specified
67 * |n| is last byte in the encoded OID for the digest.
279 const unsigned char *encoded = NULL;
286 /* Compute the encoded digest. */
298 encoded = m;
302 encoded = tmps;
309 encrypt_len = RSA_private_encrypt((int)encoded_len, encoded, sigret, rsa,
337 unsigned char *decrypt_buf = NULL, *encoded = NULL;
344 /* Recover the encoded digest. */
424 /* Construct the encoded digest and ensure it matches. */
425 if (!encode_pkcs1(&encoded, &encoded_len, type, m, m_len))
429 || memcmp(encoded, decrypt_buf, encoded_len) != 0) {
444 OPENSSL_clear_free(encoded, encoded_len);