| /src/crypto/external/apache2/openssl/dist/crypto/sha/ |
| sha1dgst.c | 31 unsigned char sha1tmp[SHA_DIGEST_LENGTH]; local 56 if (!SHA1_Final(sha1tmp, sha1)) 73 if (!SHA1_Update(sha1, sha1tmp, sizeof(sha1tmp))) 77 OPENSSL_cleanse(sha1tmp, sizeof(sha1tmp));
|
| /src/crypto/external/bsd/openssl/dist/crypto/sha/ |
| sha1dgst.c | 31 unsigned char sha1tmp[SHA_DIGEST_LENGTH]; local 56 if (!SHA1_Final(sha1tmp, sha1)) 73 if (!SHA1_Update(sha1, sha1tmp, sizeof(sha1tmp))) 77 OPENSSL_cleanse(sha1tmp, sizeof(sha1tmp));
|
| /src/crypto/external/apache2/openssl/dist/crypto/md5/ |
| md5_sha1.c | 45 unsigned char sha1tmp[SHA_DIGEST_LENGTH]; local 76 if (!SHA1_Final(sha1tmp, &mctx->sha1)) 99 if (!SHA1_Update(&mctx->sha1, sha1tmp, sizeof(sha1tmp))) 105 OPENSSL_cleanse(sha1tmp, sizeof(sha1tmp));
|
| /src/crypto/external/bsd/openssl/dist/crypto/md5/ |
| md5_sha1.c | 45 unsigned char sha1tmp[SHA_DIGEST_LENGTH]; local 76 if (!SHA1_Final(sha1tmp, &mctx->sha1)) 99 if (!SHA1_Update(&mctx->sha1, sha1tmp, sizeof(sha1tmp))) 105 OPENSSL_cleanse(sha1tmp, sizeof(sha1tmp));
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| m_md5_sha1.c | 54 unsigned char sha1tmp[SHA_DIGEST_LENGTH]; local 88 if (!SHA1_Final(sha1tmp, &mctx->sha1)) 111 if (!SHA1_Update(&mctx->sha1, sha1tmp, sizeof(sha1tmp))) 117 OPENSSL_cleanse(sha1tmp, sizeof(sha1tmp));
|
| m_sha1.c | 38 unsigned char sha1tmp[SHA_DIGEST_LENGTH]; local 67 if (!SHA1_Final(sha1tmp, sha1)) 84 if (!SHA1_Update(sha1, sha1tmp, sizeof(sha1tmp))) 88 OPENSSL_cleanse(sha1tmp, sizeof(sha1tmp));
|
| e_des3.c | 319 unsigned char icv[8], iv[8], sha1tmp[SHA_DIGEST_LENGTH]; local 348 SHA1(out, inl - 16, sha1tmp); 350 if (!CRYPTO_memcmp(sha1tmp, icv, 8)) 353 OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH); 365 unsigned char sha1tmp[SHA_DIGEST_LENGTH]; local 371 SHA1(in, inl, sha1tmp); 372 memcpy(out + inl + 8, sha1tmp, 8); 373 OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH);
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_tdes_wrap.c | 37 unsigned char icv[8], iv[TDES_IVLEN], sha1tmp[SHA_DIGEST_LENGTH]; local 67 if (ossl_sha1(out, inl - 16, sha1tmp) /* Work out hash of first portion */ 68 && CRYPTO_memcmp(sha1tmp, icv, 8) == 0) 71 OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH); 83 unsigned char sha1tmp[SHA_DIGEST_LENGTH]; local 94 if (!ossl_sha1(in, inl, sha1tmp)) 96 memcpy(out + inl + ivlen, sha1tmp, icvlen); 97 OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH);
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_tdes_wrap.c | 38 unsigned char icv[8], iv[TDES_IVLEN], sha1tmp[SHA_DIGEST_LENGTH]; local 68 if (ossl_sha1(out, inl - 16, sha1tmp) /* Work out hash of first portion */ 69 && CRYPTO_memcmp(sha1tmp, icv, 8) == 0) 72 OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH); 84 unsigned char sha1tmp[SHA_DIGEST_LENGTH]; local 95 if (!ossl_sha1(in, inl, sha1tmp)) 97 memcpy(out + inl + ivlen, sha1tmp, icvlen); 98 OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH);
|
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| e_des3.c | 319 unsigned char icv[8], iv[8], sha1tmp[SHA_DIGEST_LENGTH]; local 347 if (ossl_sha1(out, inl - 16, sha1tmp) /* Work out hash of first portion */ 348 && CRYPTO_memcmp(sha1tmp, icv, 8) == 0) 351 OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH); 363 unsigned char sha1tmp[SHA_DIGEST_LENGTH]; local 369 if (!ossl_sha1(in, inl, sha1tmp)) 371 memcpy(out + inl + 8, sha1tmp, 8); 372 OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH);
|
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| e_des3.c | 320 unsigned char icv[8], iv[8], sha1tmp[SHA_DIGEST_LENGTH]; local 348 if (ossl_sha1(out, inl - 16, sha1tmp) /* Work out hash of first portion */ 349 && CRYPTO_memcmp(sha1tmp, icv, 8) == 0) 352 OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH); 364 unsigned char sha1tmp[SHA_DIGEST_LENGTH]; local 370 if (!ossl_sha1(in, inl, sha1tmp)) 372 memcpy(out + inl + 8, sha1tmp, 8); 373 OPENSSL_cleanse(sha1tmp, SHA_DIGEST_LENGTH);
|