Home | History | Annotate | Download | only in ssl

Lines Matching refs:A1

165 	unsigned char A1[EVP_MAX_MD_SIZE];
193 if (!EVP_DigestSignFinal(&ctx,A1,&A1_len))
203 if (!EVP_DigestSignUpdate(&ctx,A1,A1_len))
205 if (!EVP_DigestSignUpdate(&ctx_tmp,A1,A1_len))
224 /* calc the next A1 value */
225 if (!EVP_DigestSignFinal(&ctx_tmp,A1,&A1_len))
230 if (!EVP_DigestSignFinal(&ctx,A1,&A1_len))
232 memcpy(out,A1,olen);
241 OPENSSL_cleanse(A1,sizeof(A1));