Lines Matching refs:salt
46 unsigned char *salt = NULL;
52 * salt contains a randomly generated value used in computing the key
53 * of the MAC process. The salt SHOULD be at least 8 octets (64
56 if ((salt = OPENSSL_malloc(slen)) == NULL)
58 if (RAND_bytes_ex(libctx, salt, slen, 0) <= 0) {
62 if (!ASN1_OCTET_STRING_set(pbm->salt, salt, (int)slen))
109 OPENSSL_free(salt);
112 OPENSSL_free(salt);
119 * |pbmp| identifies the algorithms, salt to use
173 /* then the salt */
174 if (!EVP_DigestUpdate(ctx, pbmp->salt->data, pbmp->salt->length))