Searched defs:md5 (Results 1 - 3 of 3) sorted by relevance
| /dovecot/src/lib-mail/ |
| H A D | mail-user-hash.c | 4 #include "md5.h" 12 unsigned char md5[MD5_RESULTLEN]; local 19 md5_get_digest(username, strlen(username), md5); 24 strlen(username), md5); local 40 md5_get_digest(str_data(str), str_len(str), md5); local 43 hash = (hash << CHAR_BIT) | md5[i];
|
| /dovecot/src/director/ |
| H A D | mail-host.c | 7 #include "md5.h" 56 unsigned char md5[MD5_RESULTLEN]; local 70 md5_final(&md5_ctx2, md5); 75 vhost->hash = (vhost->hash << CHAR_BIT) | md5[j];
|
| /dovecot/src/doveadm/dsync/ |
| H A D | dsync-mailbox-tree-sync.c | 7 #include "md5.h" 931 struct md5_context *md5) 935 md5_update(md5, node->mailbox_guid, 937 md5_update(md5, node->name, strlen(node->name)); 941 if (mailbox_node_hash_first_child(node, md5)) 951 struct md5_context md5; local 957 md5_init(&md5); 958 if (!mailbox_node_hash_first_child(node, &md5)) 960 md5_final(&md5, digest); 930 mailbox_node_hash_first_child(struct dsync_mailbox_node *node, struct md5_context *md5) argument
|
Completed in 22 milliseconds