/openssl/crypto/rc4/asm/ |
H A D | rc4-586.pl | 77 $tx="ecx"; 87 &add (&LB($yy),&LB($tx)); 91 &add ($ty,$tx); 115 &add (&LB($yy),&LB($tx)); 125 &add (&LB($ty),&LB($tx)); 141 &add (&LB($yy),&LB($tx)); 147 &add ($ty,$tx); 265 &add (&LB($yy),&LB($tx)); 269 &add ($ty,$tx); 287 &add (&LB($yy),&LB($tx)); [all …]
|
H A D | rc4-c64xplus.pl | 31 ($KEYB,$YY,$TX,$tx,$SUM,$dat)=map("B$_",(5,7,8,9,1,2)); 70 LDBU *${KEYA}[$XX],$tx 76 ||[!B0] ADD4 $tx,$YY,$YY 77 ||[!B0] MVD $tx,$TX 78 ADD4 $TY,$TX,$SUM ; [0,0] $TX is not replaced by $tx yet! 144 LDBU *${KEYA}[$XX],$tx 152 ||[!B0] ADD4 $tx,$YY,$YY 153 ||[!B0] MV $tx,$TX
|
/openssl/test/ |
H A D | quic_ackm_test.c | 341 OSSL_ACKM_TX_PKT *tx; in test_tx_ack_case_actual() local 362 h.pkts[i].pkt = tx = OPENSSL_zalloc(sizeof(*tx)); in test_tx_ack_case_actual() 363 if (!TEST_ptr(tx)) in test_tx_ack_case_actual() 368 tx->is_inflight = 1; in test_tx_ack_case_actual() 369 tx->is_ack_eliciting = 1; in test_tx_ack_case_actual() 370 tx->num_bytes = 123; in test_tx_ack_case_actual() 377 tx->time = fake_time; in test_tx_ack_case_actual() 520 OSSL_ACKM_TX_PKT *tx = NULL; in test_tx_ack_time_script() local 536 h.pkts[i].pkt = tx = OPENSSL_zalloc(sizeof(*tx)); in test_tx_ack_time_script() 537 if (!TEST_ptr(tx)) in test_tx_ack_time_script() [all …]
|
/openssl/crypto/md5/asm/ |
H A D | md5-sparcv9.pl | 38 $tx="%g3"; 75 sllx @X[$j+1],$shl1,$tx 77 sllx $tx,$shl2,$tx 79 or $tx,@X[$j],@X[$j] 114 srlx @X[0],32,$tx ! extract X[1] 122 add $tx,$t2,$t2 ! X[1]+K[`$i+1`] 136 $code.=<<___ if ($j&1 && ($xi=$tx)); 161 $code.=<<___ if ($j&1 && ($xi=$tx)); 343 sllx @X[1],$shl1,$tx 345 sllx $tx,$shl2,$tx [all …]
|
/openssl/crypto/rc4/ |
H A D | rc4_enc.c | 31 register RC4_INT x, y, tx, ty; in RC4() local 40 tx=d[x]; \ in RC4() 41 y=(tx+y)&0xff; \ in RC4() 43 d[y]=tx; \ in RC4() 44 (out) = d[(tx+ty)&0xff]^ (in); in RC4()
|
/openssl/crypto/sha/asm/ |
H A D | sha1-mb-x86_64.pl | 154 pshufb $tx,@Xi[0] 184 pshufb $tx,@Xi[1] 217 pshufb $tx,@Xi[1] 236 movdqa @Xi[1],$tx 239 psrld \$31,$tx 288 movdqa @Xi[1],$tx 290 psrld \$31,$tx 341 movdqa @Xi[1],$tx 349 psrld \$31,$tx 482 movdqu 0x80($ctx),$tx [all …]
|
/openssl/doc/designs/ddd/ |
H A D | ddd-01-conn-blocking.c | 101 int tx(BIO *bio, const void *buf, int buf_len) in tx() function 167 l = tx(b, msg, mlen); in main()
|
H A D | ddd-03-fd-blocking.c | 94 int tx(SSL *ssl, const void *buf, int buf_len) in tx() function 193 l = tx(ssl, msg, mlen); in main()
|
H A D | ddd-02-conn-nonblocking-threads.c | 140 int tx(APP_CONN *conn, const void *buf, int buf_len) in tx() function 292 l = tx(conn, tx_p, tx_len); in main()
|
H A D | ddd-02-conn-nonblocking.c | 152 int tx(APP_CONN *conn, const void *buf, int buf_len) in tx() function 355 l = tx(conn, tx_p, tx_len); in main()
|
H A D | ddd-04-fd-nonblocking.c | 114 int tx(APP_CONN *conn, const void *buf, int buf_len) in tx() function 369 l = tx(conn, tx_p, tx_len); in main()
|
H A D | ddd-05-mem-nonblocking.c | 139 int tx(APP_CONN *conn, const void *buf, int buf_len) function 421 l = tx(conn, tx_p, tx_len);
|
/openssl/crypto/ec/ |
H A D | ec_key.c | 697 BIGNUM *tx, *ty; in EC_KEY_set_public_key_affine_coordinates() local 715 tx = BN_CTX_get(ctx); in EC_KEY_set_public_key_affine_coordinates() 722 if (!EC_POINT_get_affine_coordinates(key->group, point, tx, ty, ctx)) in EC_KEY_set_public_key_affine_coordinates() 729 if (BN_cmp(x, tx) || BN_cmp(y, ty)) { in EC_KEY_set_public_key_affine_coordinates()
|
/openssl/doc/designs/quic-design/ |
H A D | tx-packetiser.md | 48 void ossl_quic_tx_packetiser_free(OSSL_QUIC_TX_PACKETISER *tx);
|