Home
last modified time | relevance | path

Searched refs:md5_input (Results 1 – 13 of 13) sorted by relevance

/dports/mail/dovecot/dovecot-2.3.17/src/lib-mail/
H A Dtest-message-header-hash.c54 unsigned char md5_input[MD5_RESULTLEN], md5_output[MD5_RESULTLEN]; in test_message_header_hash_more() local
67 md5_final(&md5_ctx, md5_input); in test_message_header_hash_more()
73 test_assert_idx(memcmp(md5_input, md5_output, MD5_RESULTLEN) == 0, i); in test_message_header_hash_more()
83 md5_final(&md5_ctx, md5_input); in test_message_header_hash_more()
84 test_assert_idx(memcmp(md5_input, md5_output, MD5_RESULTLEN) == 0, i); in test_message_header_hash_more()
98 md5_final(&md5_ctx, md5_input); in test_message_header_hash_more()
99 test_assert_idx(memcmp(md5_input, md5_output, MD5_RESULTLEN) == 0, i); in test_message_header_hash_more()
/dports/security/p11-kit/p11-kit-0.24.0/trust/
H A Dtest-digest.c96 const char *md5_input[] = { variable
121 for (i = 0; md5_input[i] != NULL; i++) { in test_md5()
123 len = strlen (md5_input[i]); in test_md5()
125 p11_digest_md5 (checksum, md5_input[i], len, NULL); in test_md5()
129 p11_digest_md5 (checksum, md5_input[i], 5, md5_input[i] + 5, len - 5, NULL); in test_md5()
/dports/databases/mariadb104-server/mariadb-10.4.24/mysys_ssl/
H A Dmy_md5.cc39 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
63 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
90 md5_input(ctx, (const uchar *)buf, (uint) len); in my_md5()
117 md5_input(ctx, str, (uint) va_arg(args, size_t)); in my_md5_multi()
135 md5_input((EVP_MD_CTX *)context, buf, (uint) len); in my_md5_input()
/dports/databases/mariadb105-client/mariadb-10.5.15/mysys_ssl/
H A Dmy_md5.cc39 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
63 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
90 md5_input(ctx, (const uchar *)buf, (uint) len); in my_md5()
117 md5_input(ctx, str, (uint) va_arg(args, size_t)); in my_md5_multi()
135 md5_input((EVP_MD_CTX *)context, buf, (uint) len); in my_md5_input()
/dports/databases/mariadb104-client/mariadb-10.4.24/mysys_ssl/
H A Dmy_md5.cc39 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
63 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
90 md5_input(ctx, (const uchar *)buf, (uint) len); in my_md5()
117 md5_input(ctx, str, (uint) va_arg(args, size_t)); in my_md5_multi()
135 md5_input((EVP_MD_CTX *)context, buf, (uint) len); in my_md5_input()
/dports/databases/mariadb103-server/mariadb-10.3.34/mysys_ssl/
H A Dmy_md5.cc42 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
66 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
93 md5_input(ctx, (const uchar *)buf, (uint) len); in my_md5()
120 md5_input(ctx, str, (uint) va_arg(args, size_t)); in my_md5_multi()
138 md5_input((EVP_MD_CTX *)context, buf, (uint) len); in my_md5_input()
/dports/databases/mariadb103-client/mariadb-10.3.34/mysys_ssl/
H A Dmy_md5.cc42 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
66 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
93 md5_input(ctx, (const uchar *)buf, (uint) len); in my_md5()
120 md5_input(ctx, str, (uint) va_arg(args, size_t)); in my_md5_multi()
138 md5_input((EVP_MD_CTX *)context, buf, (uint) len); in my_md5_input()
/dports/databases/mariadb105-server/mariadb-10.5.15/mysys_ssl/
H A Dmy_md5.cc39 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
63 static void md5_input(EVP_MD_CTX *context, const uchar *buf, unsigned len) in md5_input() function
90 md5_input(ctx, (const uchar *)buf, (uint) len); in my_md5()
117 md5_input(ctx, str, (uint) va_arg(args, size_t)); in my_md5_multi()
135 md5_input((EVP_MD_CTX *)context, buf, (uint) len); in my_md5_input()
/dports/net-im/pidgin-sipe/pidgin-sipe-1.24.0/src/core/
H A Dsip-sec-ntlm.c737 unsigned char *md5_input = g_malloc(16 + len); in SIGNKEY() local
738 memcpy(md5_input, random_session_key, 16); in SIGNKEY()
739 memcpy(md5_input + 16, magic, len); in SIGNKEY()
741 MD5 (md5_input, len + 16, result); in SIGNKEY()
742 g_free(md5_input); in SIGNKEY()
780 unsigned char *md5_input = g_malloc(16 + len); in SEALKEY() local
794 memcpy(md5_input, random_session_key, key_len); in SEALKEY()
795 memcpy(md5_input + key_len, magic, len); in SEALKEY()
797 MD5 (md5_input, key_len + len, result); in SEALKEY()
798 g_free(md5_input); in SEALKEY()
/dports/databases/mariadb103-server/mariadb-10.3.34/extra/yassl/src/
H A Dyassl_int.cpp944 output_buffer md5_input(preSz + SHA_LEN); in makeMasterSecret() local
950 md5_input.write(secure_.get_connection().pre_master_secret_, preSz); in makeMasterSecret()
968 md5_input.set_current(preSz); in makeMasterSecret()
969 md5_input.write(sha_output, SHA_LEN); in makeMasterSecret()
971 md5_input.get_buffer(), md5_input.get_size()); in makeMasterSecret()
1007 opaque md5_input[SECRET_LEN + SHA_LEN]; in deriveKeys() local
1013 memcpy(md5_input, secure_.get_connection().master_secret_, SECRET_LEN); in deriveKeys()
1031 memcpy(&md5_input[SECRET_LEN], sha_output, SHA_LEN); in deriveKeys()
1033 md5_input, sizeof(md5_input)); in deriveKeys()
/dports/databases/mariadb103-client/mariadb-10.3.34/extra/yassl/src/
H A Dyassl_int.cpp944 output_buffer md5_input(preSz + SHA_LEN); in makeMasterSecret() local
950 md5_input.write(secure_.get_connection().pre_master_secret_, preSz); in makeMasterSecret()
968 md5_input.set_current(preSz); in makeMasterSecret()
969 md5_input.write(sha_output, SHA_LEN); in makeMasterSecret()
971 md5_input.get_buffer(), md5_input.get_size()); in makeMasterSecret()
1007 opaque md5_input[SECRET_LEN + SHA_LEN]; in deriveKeys() local
1013 memcpy(md5_input, secure_.get_connection().master_secret_, SECRET_LEN); in deriveKeys()
1031 memcpy(&md5_input[SECRET_LEN], sha_output, SHA_LEN); in deriveKeys()
1033 md5_input, sizeof(md5_input)); in deriveKeys()
/dports/databases/mysql55-client/mysql-5.5.62/extra/yassl/src/
H A Dyassl_int.cpp948 output_buffer md5_input(preSz + SHA_LEN); in makeMasterSecret() local
954 md5_input.write(secure_.get_connection().pre_master_secret_, preSz); in makeMasterSecret()
972 md5_input.set_current(preSz); in makeMasterSecret()
973 md5_input.write(sha_output, SHA_LEN); in makeMasterSecret()
975 md5_input.get_buffer(), md5_input.get_size()); in makeMasterSecret()
1011 opaque md5_input[SECRET_LEN + SHA_LEN]; in deriveKeys() local
1017 memcpy(md5_input, secure_.get_connection().master_secret_, SECRET_LEN); in deriveKeys()
1035 memcpy(&md5_input[SECRET_LEN], sha_output, SHA_LEN); in deriveKeys()
1037 md5_input, sizeof(md5_input)); in deriveKeys()
/dports/devel/aws-c-s3/aws-c-s3-0.1.27/source/
H A Ds3_request_messages.c454 struct aws_byte_cursor md5_input = aws_byte_cursor_from_buf(input_buf); in aws_s3_message_util_add_content_md5_header() local
457 if (aws_md5_compute(allocator, &md5_input, &md5_output_buf, 0)) { in aws_s3_message_util_add_content_md5_header()