Home
last modified time | relevance | path

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

/openssl/util/
H A Dcheck-format.pl547 my $cmt_text = $head;
574 $comment_indent = length($head) + 1;
575 $_ = "$head@@".blind_nonspace($cmt_text);
607 if (my ($head, $cmt_text) = m|^(.*?)//(.*$)|) {
610 $_ = "$head@@".blind_nonspace($cmt_text);
645 my $offset = length($head);
751 my $head = $1;
752 update_nested_indents($head);
800 update_nested_indents($head);
920 my ($head, $mid, $tail) = ($1, $3, $4);
[all …]
/openssl/crypto/bn/
H 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/crypto/evp/
H 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()
H A De_aes_cbc_hmac_sha1.c33 SHA_CTX head, tail, md; member
86 SHA1_Init(&key->head); /* handy when benchmarking */ in aesni_cbc_hmac_sha1_init_key()
87 key->tail = key->head; in aesni_cbc_hmac_sha1_init_key()
88 key->md = key->head; in aesni_cbc_hmac_sha1_init_key()
559 key->md = key->head; in aesni_cbc_hmac_sha1_cipher()
792 SHA1_Init(&key->head); in aesni_cbc_hmac_sha1_ctrl()
793 SHA1_Update(&key->head, ptr, arg); in aesni_cbc_hmac_sha1_ctrl()
794 SHA1_Final(hmac_key, &key->head); in aesni_cbc_hmac_sha1_ctrl()
801 SHA1_Init(&key->head); in aesni_cbc_hmac_sha1_ctrl()
833 key->md = key->head; in aesni_cbc_hmac_sha1_ctrl()
[all …]
H 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/providers/implementations/ciphers/
H 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()
H A Dcipher_aes_cbc_hmac_sha.h55 SHA_CTX head, tail, md; member
60 SHA256_CTX head, tail, md; member
H 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 …]
H 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 …]
H A Dcipher_rc4_hmac_md5.h20 MD5_CTX head, tail, md; member
/openssl/ssl/
H A Dssl_ciph.c647 if (curr == *head) in ll_append_tail()
648 *head = curr->next; in ll_append_tail()
662 if (curr == *head) in ll_append_head()
670 (*head)->prev = curr; in ll_append_head()
671 curr->next = *head; in ll_append_head()
673 *head = curr; in ll_append_head()
765 ciph_curr = head; in ssl_cipher_collect_aliases()
830 head = *head_p; in ssl_cipher_apply_rule()
835 last = head; in ssl_cipher_apply_rule()
837 next = head; in ssl_cipher_apply_rule()
[all …]
/openssl/ssl/quic/
H A Dquic_ackm.c79 h->head = h->tail = NULL; in tx_pkt_history_init()
96 h->head = h->tail = NULL; in tx_pkt_history_destroy()
124 if (h->head == NULL) in tx_pkt_history_add_actual()
125 h->head = h->tail; in tx_pkt_history_add_actual()
173 if (h->head == pkt) in tx_pkt_history_remove()
482 if (s->head == xprev) in pn_set_merge_adjacent()
483 s->head = x; in pn_set_merge_adjacent()
565 s->head->next = s->head->prev = NULL; in pn_set_insert()
578 z = end < s->head->range.start ? s->head : s->tail; in pn_set_insert()
762 if (s->head == NULL) in pn_set_query()
[all …]
/openssl/crypto/aes/asm/
H 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/doc/man3/
H A DBIO_push.pod46 BIO_push() returns the head of the chain,
/openssl/
H A DCHANGES.md1683 thing, to include one public OpenSSL head file each. This tests that
2304 thing, to include one public OpenSSL head file each. This tests that
13645 the callback types and macros at the head of lhash.h for details

Completed in 115 milliseconds