Home
last modified time | relevance | path

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

/openssl-master/util/
A Dcheck-format.pl541 my $cmt_text = $head;
568 $comment_indent = length($head) + 1;
569 $_ = "$head@@".blind_nonspace($cmt_text);
600 if (my ($head, $cmt_text) = m|^(.*?)//(.*$)|) {
603 $_ = "$head@@".blind_nonspace($cmt_text);
638 my $offset = length($head);
742 my $head = $1;
743 update_nested_indents($head);
790 update_nested_indents($head);
892 my ($head, $mid, $tail) = ($1, $3, $4);
[all …]
/openssl-master/crypto/bn/
A Dbn_ctx.c33 BN_POOL_ITEM *head, *current, *tail; member
85 BN_POOL_ITEM *item = ctx->pool.head; in ctxdbg()
162 BN_POOL_ITEM *pool = ctx->pool.head; in BN_CTX_free()
296 p->head = p->current = p->tail = NULL; in BN_POOL_init()
305 while (p->head) { in BN_POOL_finish()
309 p->current = p->head->next; in BN_POOL_finish()
310 OPENSSL_free(p->head); in BN_POOL_finish()
311 p->head = p->current; in BN_POOL_finish()
337 if (p->head == NULL) in BN_POOL_get()
338 p->head = p->current = p->tail = item; in BN_POOL_get()
[all …]
/openssl-master/crypto/evp/
A De_rc4_hmac_md5.c33 MD5_CTX head, tail, md; member
56 MD5_Init(&key->head); /* handy when benchmarking */ in rc4_hmac_md5_init_key()
57 key->tail = key->head; in rc4_hmac_md5_init_key()
58 key->md = key->head; in rc4_hmac_md5_init_key()
200 MD5_Init(&key->head); in rc4_hmac_md5_ctrl()
201 MD5_Update(&key->head, ptr, arg); in rc4_hmac_md5_ctrl()
202 MD5_Final(hmac_key, &key->head); in rc4_hmac_md5_ctrl()
209 MD5_Init(&key->head); in rc4_hmac_md5_ctrl()
210 MD5_Update(&key->head, hmac_key, sizeof(hmac_key)); in rc4_hmac_md5_ctrl()
239 key->md = key->head; in rc4_hmac_md5_ctrl()
A De_aes_cbc_hmac_sha1.c33 SHA_CTX head, tail, md; member
85 SHA1_Init(&key->head); /* handy when benchmarking */ in aesni_cbc_hmac_sha1_init_key()
86 key->tail = key->head; in aesni_cbc_hmac_sha1_init_key()
87 key->md = key->head; in aesni_cbc_hmac_sha1_init_key()
552 key->md = key->head; in aesni_cbc_hmac_sha1_cipher()
785 SHA1_Init(&key->head); in aesni_cbc_hmac_sha1_ctrl()
786 SHA1_Update(&key->head, ptr, arg); in aesni_cbc_hmac_sha1_ctrl()
787 SHA1_Final(hmac_key, &key->head); in aesni_cbc_hmac_sha1_ctrl()
794 SHA1_Init(&key->head); in aesni_cbc_hmac_sha1_ctrl()
826 key->md = key->head; in aesni_cbc_hmac_sha1_ctrl()
[all …]
A De_aes_cbc_hmac_sha256.c33 SHA256_CTX head, tail, md; member
81 SHA256_Init(&key->head); /* handy when benchmarking */ in aesni_cbc_hmac_sha256_init_key()
82 key->tail = key->head; in aesni_cbc_hmac_sha256_init_key()
83 key->md = key->head; in aesni_cbc_hmac_sha256_init_key()
563 key->md = key->head; in aesni_cbc_hmac_sha256_cipher()
766 SHA256_Init(&key->head); in aesni_cbc_hmac_sha256_ctrl()
767 SHA256_Update(&key->head, ptr, arg); in aesni_cbc_hmac_sha256_ctrl()
768 SHA256_Final(hmac_key, &key->head); in aesni_cbc_hmac_sha256_ctrl()
775 SHA256_Init(&key->head); in aesni_cbc_hmac_sha256_ctrl()
807 key->md = key->head; in aesni_cbc_hmac_sha256_ctrl()
[all …]
/openssl-master/providers/implementations/ciphers/
A Dcipher_rc4_hmac_md5_hw.c41 MD5_Init(&ctx->head); /* handy when benchmarking */ in cipher_hw_rc4_hmac_md5_initkey()
42 ctx->tail = ctx->head; in cipher_hw_rc4_hmac_md5_initkey()
43 ctx->md = ctx->head; in cipher_hw_rc4_hmac_md5_initkey()
184 ctx->md = ctx->head; in cipher_hw_rc4_hmac_md5_tls_init()
201 MD5_Init(&ctx->head); in cipher_hw_rc4_hmac_md5_init_mackey()
202 MD5_Update(&ctx->head, key, len); in cipher_hw_rc4_hmac_md5_init_mackey()
203 MD5_Final(hmac_key, &ctx->head); in cipher_hw_rc4_hmac_md5_init_mackey()
210 MD5_Init(&ctx->head); in cipher_hw_rc4_hmac_md5_init_mackey()
211 MD5_Update(&ctx->head, hmac_key, sizeof(hmac_key)); in cipher_hw_rc4_hmac_md5_init_mackey()
A Dcipher_aes_cbc_hmac_sha.h55 SHA_CTX head, tail, md; member
60 SHA256_CTX head, tail, md; member
A Dcipher_aes_cbc_hmac_sha1_hw.c57 SHA1_Init(&sctx->head); /* handy when benchmarking */ in aesni_cbc_hmac_sha1_init_key()
58 sctx->tail = sctx->head; in aesni_cbc_hmac_sha1_init_key()
59 sctx->md = sctx->head; in aesni_cbc_hmac_sha1_init_key()
496 sctx->md = sctx->head; in aesni_cbc_hmac_sha1_cipher()
642 SHA1_Init(&ctx->head); in aesni_cbc_hmac_sha1_set_mac_key()
643 sha1_update(&ctx->head, mac, len); in aesni_cbc_hmac_sha1_set_mac_key()
644 SHA1_Final(hmac_key, &ctx->head); in aesni_cbc_hmac_sha1_set_mac_key()
651 SHA1_Init(&ctx->head); in aesni_cbc_hmac_sha1_set_mac_key()
652 sha1_update(&ctx->head, hmac_key, sizeof(hmac_key)); in aesni_cbc_hmac_sha1_set_mac_key()
686 sctx->md = sctx->head; in aesni_cbc_hmac_sha1_set_tls1_aad()
[all …]
A Dcipher_aes_cbc_hmac_sha256_hw.c59 SHA256_Init(&sctx->head); /* handy when benchmarking */ in aesni_cbc_hmac_sha256_init_key()
60 sctx->tail = sctx->head; in aesni_cbc_hmac_sha256_init_key()
61 sctx->md = sctx->head; in aesni_cbc_hmac_sha256_init_key()
532 sctx->md = sctx->head; in aesni_cbc_hmac_sha256_cipher()
695 SHA256_Init(&ctx->head); in aesni_cbc_hmac_sha256_set_mac_key()
696 sha256_update(&ctx->head, mackey, len); in aesni_cbc_hmac_sha256_set_mac_key()
697 SHA256_Final(hmac_key, &ctx->head); in aesni_cbc_hmac_sha256_set_mac_key()
704 SHA256_Init(&ctx->head); in aesni_cbc_hmac_sha256_set_mac_key()
705 sha256_update(&ctx->head, hmac_key, sizeof(hmac_key)); in aesni_cbc_hmac_sha256_set_mac_key()
739 sctx->md = sctx->head; in aesni_cbc_hmac_sha256_set_tls1_aad()
[all …]
A Dcipher_rc4_hmac_md5.h20 MD5_CTX head, tail, md; member
/openssl-master/ssl/
A Dssl_ciph.c643 if (curr == *head) in ll_append_tail()
644 *head = curr->next; in ll_append_tail()
658 if (curr == *head) in ll_append_head()
666 (*head)->prev = curr; in ll_append_head()
667 curr->next = *head; in ll_append_head()
669 *head = curr; in ll_append_head()
761 ciph_curr = head; in ssl_cipher_collect_aliases()
826 head = *head_p; in ssl_cipher_apply_rule()
831 last = head; in ssl_cipher_apply_rule()
833 next = head; in ssl_cipher_apply_rule()
[all …]
/openssl-master/crypto/aes/asm/
A Daes-mips.pl1705 $PTR_ADD $head,$key,0
1709 lw $rk0,0($head)
1710 lw $rk1,4($head)
1711 lw $rk2,8($head)
1712 lw $rk3,12($head)
1721 $PTR_ADD $head,16
1723 sw $rk4,-16($head)
1724 sw $rk5,-12($head)
1725 sw $rk6,-8($head)
1726 sw $rk7,-4($head)
[all …]
/openssl-master/
A DCHANGES.md1304 thing, to include one public OpenSSL head file each. This tests that
1907 thing, to include one public OpenSSL head file each. This tests that
13248 the callback types and macros at the head of lhash.h for details

Completed in 44 milliseconds