/openssl/util/ |
H A D | check-format.pl | 625 my $cmt_text = $head; 652 $comment_indent = length($head) + 1; 653 $_ = "$head@@".blind_nonspace($cmt_text); 685 if (my ($head, $cmt_text) = m|^(.*?)//(.*$)|) { 688 $_ = "$head@@".blind_nonspace($cmt_text); 755 my $offset = length($head); 849 my $head = $1; 850 update_nested_indents($head); 898 update_nested_indents($head); 1019 my ($head, $mid, $tail) = ($1, $3, $4); [all …]
|
H A D | check-format-commit.sh | 65 COMMIT_LAST=$(echo "$COMMIT_LAST" | head -1)
|
/openssl/crypto/bn/ |
H A D | bn_ctx.c | 33 BN_POOL_ITEM *head, *current, *tail; member 85 BN_POOL_ITEM *item = ctx->pool.head; in ctxdbg() 160 BN_POOL_ITEM *pool = ctx->pool.head; in BN_CTX_free() 292 p->head = p->current = p->tail = NULL; in BN_POOL_init() 301 while (p->head) { in BN_POOL_finish() 305 p->current = p->head->next; in BN_POOL_finish() 306 OPENSSL_free(p->head); in BN_POOL_finish() 307 p->head = p->current; in BN_POOL_finish() 331 if (p->head == NULL) in BN_POOL_get() 332 p->head = p->current = p->tail = item; in BN_POOL_get() [all …]
|
/openssl/crypto/evp/ |
H A D | e_rc4_hmac_md5.c | 33 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 D | e_aes_cbc_hmac_sha1.c | 33 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 D | e_aes_cbc_hmac_sha256.c | 33 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/ssl/quic/ |
H A D | quic_cfq.c | 70 QUIC_CFQ_ITEM_EX *head, *tail; member 101 if (l->head == n) in list_remove() 102 l->head = n->next; in list_remove() 114 n->next = l->head; in list_insert_head() 116 l->head = n; in list_insert_head() 130 if (l->head == NULL) in list_insert_tail() 131 l->head = n; in list_insert_tail() 151 QUIC_CFQ_ITEM_EX *p = l->head, *pprev = NULL; in list_insert_sorted() 154 l->head = l->tail = n; in list_insert_sorted() 196 for (p = l->head; p != NULL; p = pnext) { in free_list_items() [all …]
|
H A D | quic_txpim.c | 24 QUIC_TXPIM_PKT_EX *head, *tail; member 48 for (n = l->head; n != NULL; n = nnext) { in free_list() 55 l->head = l->tail = NULL; in free_list() 70 if (l->head == n) in list_remove() 71 l->head = n->next; in list_remove() 88 if (l->head == NULL) in list_insert_tail() 89 l->head = n; in list_insert_tail() 94 QUIC_TXPIM_PKT_EX *ex = txpim->free_list.head; in txpim_get_free()
|
H A D | quic_sf_list.c | 57 for (sf = fl->head; sf != NULL; sf = next_frame) { in ossl_sframe_list_destroy() 98 fl->tail = fl->head = stream_frame_new(range, pkt, data); in ossl_sframe_list_insert() 117 for (sf = fl->head; sf != NULL && sf->range.start < range->start; in ossl_sframe_list_insert() 145 if (fl->head == drop_frame) in ossl_sframe_list_insert() 146 fl->head = next_frame; in ossl_sframe_list_insert() 171 fl->head = new_frame; in ossl_sframe_list_insert() 190 sf = fl->head; in ossl_sframe_list_peek() 232 for (sf = fl->head; sf != NULL && sf->range.end <= limit;) { in ossl_sframe_list_drop_frames() 239 fl->head = sf; in ossl_sframe_list_drop_frames() 276 STREAM_FRAME *sf = fl->head, *prev_frame = NULL; in ossl_sframe_list_move_data()
|
H A D | quic_srtm.c | 220 static void sorted_insert_seq_num(SRTM_ITEM *head, SRTM_ITEM *item, SRTM_ITEM **new_head) in sorted_insert_seq_num() argument 223 SRTM_ITEM *cur = head, **fixup = new_head; in sorted_insert_seq_num() 225 *new_head = head; in sorted_insert_seq_num() 241 static void sorted_insert_srt(SRTM_ITEM *head, SRTM_ITEM *item, SRTM_ITEM **new_head) in sorted_insert_srt() argument 244 SRTM_ITEM *cur = head, **fixup = new_head; in sorted_insert_srt() 246 *new_head = head; in sorted_insert_srt() 285 SRTM_ITEM *item = NULL, *head = NULL, *new_head, *r_item; in ossl_quic_srtm_add() local 291 if ((item = srtm_find(srtm, opaque, seq_num, &head, NULL)) != NULL) in ossl_quic_srtm_add() 306 if (head == NULL) { in ossl_quic_srtm_add() 314 sorted_insert_seq_num(head, item, &new_head); in ossl_quic_srtm_add() [all …]
|
/openssl/providers/implementations/ciphers/ |
H A D | cipher_rc4_hmac_md5_hw.c | 41 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 D | cipher_aes_cbc_hmac_sha.h | 55 SHA_CTX head, tail, md; member 60 SHA256_CTX head, tail, md; member
|
H A D | cipher_aes_cbc_hmac_sha1_hw.c | 57 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 D | cipher_aes_cbc_hmac_sha256_hw.c | 59 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 D | cipher_rc4_hmac_md5.h | 20 MD5_CTX head, tail, md; member
|
/openssl/ssl/ |
H A D | ssl_ciph.c | 614 if (curr == *head) in ll_append_tail() 615 *head = curr->next; in ll_append_tail() 629 if (curr == *head) in ll_append_head() 637 (*head)->prev = curr; in ll_append_head() 638 curr->next = *head; in ll_append_head() 640 *head = curr; in ll_append_head() 732 ciph_curr = head; in ssl_cipher_collect_aliases() 798 head = *head_p; in ssl_cipher_apply_rule() 803 last = head; in ssl_cipher_apply_rule() 805 next = head; in ssl_cipher_apply_rule() [all …]
|
/openssl/include/internal/ |
H A D | quic_sf_list.h | 43 STREAM_FRAME *head, *tail; member
|
/openssl/crypto/aes/asm/ |
H A D | aes-mips.pl | 1705 $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/test/quic-openssl-docker/ |
H A D | run_endpoint.sh | 21 head -n -1 $CURLRC > $CURLRC.tmp
|
/openssl/doc/man3/ |
H A D | BIO_push.pod | 46 BIO_push() returns the head of the chain,
|
/openssl/doc/man7/ |
H A D | ossl-guide-quic-introduction.pod | 36 "head-of-line blocking"). It also enables an application to open additional
|
/openssl/doc/designs/quic-design/ |
H A D | tx-packetiser.md | 523 one another for the purposes of head-of-line blocking. By contrast, with IXPM,
|
/openssl/ |
H A D | CHANGES.md | 1455 the new head of the BIO chain to the caller. Under certain conditions, 3225 thing, to include one public OpenSSL head file each. This tests that 3846 thing, to include one public OpenSSL head file each. This tests that 15187 the callback types and macros at the head of lhash.h for details
|