Searched refs:ctx1 (Results 1 - 16 of 16) sorted by relevance

/macosx-10.10/OpenSSH-189/openssh/
H A Dmd5crypt.c57 MD5_CTX ctx, ctx1; local
92 MD5_Init(&ctx1);
93 MD5_Update(&ctx1, pw, strlen(pw));
94 MD5_Update(&ctx1, sp, sl);
95 MD5_Update(&ctx1, pw, strlen(pw));
96 MD5_Final(final, &ctx1);
122 MD5_Init(&ctx1);
124 MD5_Update(&ctx1, pw, strlen(pw));
126 MD5_Update(&ctx1, final, 16);
129 MD5_Update(&ctx1, s
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/passwd/
H A Dapr1.c60 lutil_MD5_CTX ctx, ctx1; local
69 lutil_MD5Init(&ctx1);
70 lutil_MD5Update(&ctx1, (const unsigned char *) passwd->bv_val, passwd->bv_len);
71 lutil_MD5Update(&ctx1, (const unsigned char *) salt->bv_val, salt->bv_len);
72 lutil_MD5Update(&ctx1, (const unsigned char *) passwd->bv_val, passwd->bv_len);
73 lutil_MD5Final(digest, &ctx1);
91 lutil_MD5Init(&ctx1);
93 lutil_MD5Update(&ctx1,
96 lutil_MD5Update(&ctx1, digest, LUTIL_MD5_BYTES);
99 lutil_MD5Update(&ctx1,
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/cspxutils/sha2Time/
H A Dsha2Time.cpp52 CC_SHA1_CTX ctx1; local
55 CC_SHA1_Init(&ctx1);
67 CC_SHA1_Update(&ctx1, text, thisMove);
69 CC_SHA1_Final(dig1, &ctx1);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/md5crypt/
H A Dmd5cryptc.tcl63 MD5_CTX ctx,ctx1;
92 MD5Init(&ctx1);
93 MD5Update(&ctx1,(const unsigned char *)pw,strlen(pw));
94 MD5Update(&ctx1,sp,sl);
95 MD5Update(&ctx1,(const unsigned char *)pw,strlen(pw));
96 MD5Final(final,&ctx1);
126 MD5Init(&ctx1);
128 MD5Update(&ctx1,(const unsigned char *)pw,strlen(pw));
130 MD5Update(&ctx1,final,16);
133 MD5Update(&ctx1,s
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/crypto/
H A Dapr_md5.c517 apr_md5_ctx_t ctx, ctx1; local
572 apr_md5_init(&ctx1);
574 apr_md5_set_xlate(&ctx1, xlate_ebcdic_to_ascii);
576 apr_md5_update(&ctx1, pw, strlen(pw));
577 apr_md5_update(&ctx1, sp, sl);
578 apr_md5_update(&ctx1, pw, strlen(pw));
579 apr_md5_final(final, &ctx1);
618 apr_md5_init(&ctx1);
620 * apr_md5_final clears out ctx1.xlate at the end of each loop,
624 apr_md5_set_xlate(&ctx1, xlate_ebcdic_to_asci
[all...]
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dossl_digest.c138 EVP_MD_CTX *ctx1, *ctx2; local
143 GetDigest(self, ctx1);
146 if (!EVP_MD_CTX_copy(ctx1, ctx2)) {
H A Dossl_hmac.c82 HMAC_CTX *ctx1, *ctx2; local
87 GetHMAC(self, ctx1);
90 HMAC_CTX_copy(ctx1, ctx2);
H A Dossl_ssl_session.c92 SSL_SESSION *ctx1, *ctx2; local
94 GetSSLSession(val1, ctx1);
97 switch (SSL_SESSION_cmp(ctx1, ctx2)) {
H A Dossl_cipher.c133 EVP_CIPHER_CTX *ctx1, *ctx2; local
138 GetCipherInit(self, ctx1);
139 if (!ctx1) {
140 AllocCipher(self, ctx1);
143 if (EVP_CIPHER_CTX_copy(ctx1, ctx2) != 1)
/macosx-10.10/Security-57031.1.35/SecurityTests/xdr_rpc/
H A Dxdr_test.cpp200 int compare_CSSM_CONTEXT(CSSM_CONTEXT *ctx1, CSSM_CONTEXT *ctx2);
1534 int compare_CSSM_CONTEXT(CSSM_CONTEXT *ctx1, CSSM_CONTEXT *ctx2) argument
1539 NULLCHECK(ctx1, ctx2, func);
1540 if (ctx1->ContextType != ctx2->ContextType ||
1541 ctx1->AlgorithmType != ctx2->AlgorithmType ||
1542 ctx1->NumberOfAttributes != ctx2->NumberOfAttributes ||
1543 ctx1->CSPHandle != ctx2->CSPHandle ||
1544 ctx1->Privileged != ctx2->Privileged ||
1545 ctx1->EncryptionProhibited != ctx2->EncryptionProhibited ||
1546 ctx1
[all...]
/macosx-10.10/apache-793/httpd/modules/dav/fs/
H A Drepos.c842 dav_resource_private *ctx1 = res1->info; local
848 if ((ctx1->finfo.filetype != APR_NOFILE) && (ctx2->finfo.filetype != APR_NOFILE)
849 && (ctx1->finfo.valid & ctx2->finfo.valid & APR_FINFO_INODE)) {
850 return ctx1->finfo.inode == ctx2->finfo.inode;
853 return strcmp(ctx1->pathname, ctx2->pathname) == 0;
861 dav_resource_private *ctx1 = res1->info; local
863 apr_size_t len1 = strlen(ctx1->pathname);
873 && memcmp(ctx1->pathname, ctx2->pathname, len1) == 0
/macosx-10.10/objc4-646/runtime/
H A Dobjc-class.mm1083 void *ctx1, void *ctx2,
1086 void *ctx1, void *ctx2)
1140 BOOL more = (*fn)(attrcount, ctx1, ctx2,
/macosx-10.10/OpenSSL098-52/src/ssl/
H A Ds3_enc.c535 int ssl3_final_finish_mac(SSL *s, EVP_MD_CTX *ctx1, EVP_MD_CTX *ctx2, argument
540 ret=ssl3_handshake_mac(s,ctx1,sender,len,p);
H A Dssl_locl.h815 int ssl3_final_finish_mac(SSL *s, EVP_MD_CTX *ctx1, EVP_MD_CTX *ctx2,
/macosx-10.10/kext_tools-384.1.4/
H A Dbootcaches.c91 #define LOGERRxlate(ctx1, ctx2, errval) do { \
94 snprintf(ctx, sizeof(ctx), "%s: %s", ctx1, c2cpy); \
96 snprintf(ctx, sizeof(ctx), "%s", ctx1); \
H A Dupdate_boot.c257 #define LOGERRxlate(up, ctx1, ctx2, errval) do { \
260 snprintf(ctx, sizeof(ctx), "%s: %s", ctx1, c2cpy); \
262 snprintf(ctx, sizeof(ctx), "%s", ctx1); \

Completed in 169 milliseconds