/openssl/crypto/seed/ |
H A D | seed.c | 449 seed_word x1, x2, x3, x4; in SEED_set_key() local 454 char2word(rawkey + 8, x3); in SEED_set_key() 457 t0 = (x1 + x3 - KC0) & 0xffffffff; in SEED_set_key() 509 seed_word x1, x2, x3, x4; in SEED_encrypt() local 514 char2word(s + 8, x3); in SEED_encrypt() 518 E_SEED(t0, t1, x1, x2, x3, x4, 0); in SEED_encrypt() 519 E_SEED(t0, t1, x3, x4, x1, x2, 2); in SEED_encrypt() 544 word2char(x3, d); in SEED_encrypt() 554 seed_word x1, x2, x3, x4; in SEED_decrypt() local 559 char2word(s + 8, x3); in SEED_decrypt() [all …]
|
/openssl/crypto/rc2/ |
H A D | rc2_cbc.c | 98 register RC2_INT x0, x1, x2, x3, t; in RC2_encrypt() local 106 x3 = (RC2_INT) (l >> 16L); in RC2_encrypt() 113 t = (x0 + (x1 & ~x3) + (x2 & x3) + *(p0++)) & 0xffff; in RC2_encrypt() 120 x3 = (t << 5) | (t >> 11); in RC2_encrypt() 127 x0 += p1[x3 & 0x3f]; in RC2_encrypt() 130 x3 += p1[x2 & 0x3f]; in RC2_encrypt() 144 register RC2_INT x0, x1, x2, x3, t; in RC2_decrypt() local 152 x3 = (RC2_INT) (l >> 16L); in RC2_decrypt() 160 t = ((x3 << 11) | (x3 >> 5)) & 0xffff; in RC2_decrypt() 167 x0 = (t - (x1 & ~x3) - (x2 & x3) - *(p0--)) & 0xffff; in RC2_decrypt() [all …]
|
/openssl/crypto/poly1305/ |
H A D | poly1305_ieee754.c | 231 double x0, x1, x2, x3; in poly1305_blocks() local 303 x3 = in3.d - TWO(52)*TWO96; in poly1305_blocks() 308 x3 += h3lo; in poly1305_blocks() 322 x3 = in3.d - TWO(52)*TWO96; in poly1305_blocks() 331 h2hi += x3; in poly1305_blocks() 351 x3 = (h3lo - c3lo) + c2lo; in poly1305_blocks() 356 x3 += (h3hi - c3hi) + c2hi; in poly1305_blocks() 365 h0lo = s3lo * x1 + s2lo * x2 + s1lo * x3 + r0lo * x0; in poly1305_blocks() 398 x3 = (h3lo - c3lo) + c2lo; in poly1305_blocks() 403 x3 += (h3hi - c3hi) + c2hi; in poly1305_blocks() [all …]
|
/openssl/crypto/poly1305/asm/ |
H A D | poly1305-ppcfp.pl | 329 lfd $x3,`$LOCALS+8*3`($sp) 344 fsub $x3,$x3,$two96 352 fadd $x3,$x3,$h3lo 421 fadd $x3,$h3lo,$h3hi 437 fmadd $h0lo,$s1lo,$x3,$h0lo 438 fmadd $h0hi,$s1hi,$x3,$h0hi 439 fmadd $h2lo,$s3lo,$x3,$h2lo 440 fmadd $h2hi,$s3hi,$x3,$h2hi 508 fadd $x3,$h3lo,$h3hi 514 fadd $x3,$x3,$two96 [all …]
|
H A D | poly1305-sparcv9.pl | 697 ldd [%sp+LOCALS+8*3],$x3 709 fsubd $x3,$two96,$x3 730 faddd $h3lo,$x3,$x3 803 faddd $h3lo,$h3hi,$x3 820 fmaddd $x3,$s1lo,$h0lo,$h0lo 821 fmaddd $x3,$s1hi,$h0hi,$h0hi 822 fmaddd $x3,$s3lo,$h2lo,$h2lo 823 fmaddd $x3,$s3hi,$h2hi,$h2hi 896 faddd $h3lo,$h3hi,$x3 901 faddd $x3,$two96,$x3 [all …]
|
/openssl/crypto/idea/ |
H A D | idea_local.h | 89 x3+= *(p++); \ 92 t0=(x1^x3)&0xffff; \ 100 x2=x3^t1; \ 101 x3=ul;
|
H A D | i_cbc.c | 99 register unsigned long x1, x2, x3, x4, t0, t1, ul; in IDEA_encrypt() local 104 x3 = (x4 >> 16); in IDEA_encrypt() 121 t0 = x3 + *(p++); in IDEA_encrypt()
|
/openssl/crypto/ec/curve448/ |
H A D | curve448.c | 391 gf x1, x2, z2, x3, z3, t1, t2; in ossl_x448_int() local 399 gf_copy(x3, x1); in ossl_x448_int() 416 gf_cond_swap(x2, x3, swap); in ossl_x448_int() 427 gf_sub_nr(z2, x3, z3); /* D = x3 - z3 */ /* 3+e */ in ossl_x448_int() 429 gf_add_nr(z2, z3, x3); /* C = x3 + z3 */ /* 2+e */ in ossl_x448_int() 430 ossl_gf_mul(x3, t2, z2); /* CB */ in ossl_x448_int() 431 gf_sub_nr(z3, x2, x3); /* DA-CB */ /* 3+e */ in ossl_x448_int() 434 gf_add_nr(z2, x2, x3); /* (DA+CB) */ /* 2+e */ in ossl_x448_int() 435 ossl_gf_sqr(x3, z2); /* x3 = (DA+CB)^2 */ in ossl_x448_int() 448 gf_cond_swap(x2, x3, swap); in ossl_x448_int() [all …]
|
/openssl/crypto/ec/ |
H A D | curve25519.c | 226 fe64_copy(x3, x1); in x25519_scalar_mulx() 236 fe64_sub(tmp0, x3, z3); in x25519_scalar_mulx() 239 fe64_add(z2, x3, z3); in x25519_scalar_mulx() 244 fe64_add(x3, z3, z2); in x25519_scalar_mulx() 250 fe64_sqr(x3, x3); in x25519_scalar_mulx() 718 fe51_copy(x3, x1); in x25519_scalar_mult() 731 fe51_add(z2, x3, z3); in x25519_scalar_mult() 736 fe51_add(x3, z3, z2); in x25519_scalar_mult() 742 fe51_sq(x3, x3); in x25519_scalar_mult() 4387 fe_copy(x3, x1); in x25519_scalar_mult_generic() [all …]
|
H A D | ecp_nistp256.c | 1237 static void point_add(felem x3, felem y3, felem z3, in point_add() argument 1366 point_double(x3, y3, z3, x1, y1, z1); in point_add() 1413 felem_assign(x3, x_out); in point_add() 1422 static void point_add_small(smallfelem x3, smallfelem y3, smallfelem z3, in point_add_small() argument 1433 felem_shrink(x3, felem_x3); in point_add_small()
|
H A D | ecp_nistp224.c | 906 static void point_add(felem x3, felem y3, felem z3, in point_add() argument 1006 point_double(x3, y3, z3, x1, y1, z1); in point_add() 1093 felem_assign(x3, x_out); in point_add()
|
H A D | ecp_nistp384.c | 1071 static void point_add(felem x3, felem y3, felem z3, in point_add() argument 1171 point_double(x3, y3, z3, x1, y1, z1); in point_add() 1208 felem_assign(x3, x_out); in point_add()
|
H A D | ecp_nistp521.c | 1205 static void point_add(felem x3, felem y3, felem z3, in point_add() argument 1332 point_double(x3, y3, z3, x1, y1, z1); in point_add() 1389 felem_assign(x3, x_out); in point_add()
|
/openssl/crypto/aes/asm/ |
H A D | bsaes-armv8.pl | 1013 // x3 -> key 1034 ldr w15, [x3, #240] // get # of rounds 1042 mov x9, x3 // pass key 1238 mov x2, x3 1268 // x3 -> key 1284 ldr w15, [x3, #240] // get # of rounds 1292 mov x9, x3 // pass key 1426 mov x22, x3 1473 // x3 -> key1 (used to encrypt the XORed plaintext blocks) 1502 mov x23, x3
|
H A D | bsaes-armv7.pl | 219 $x2,$x3,$y2,$y3,$t1)=@_; 226 veor $x2, $x2, $x3 228 vand $x3, $x3, $y2 232 veor $x2, $x2, $x3 234 veor $x3, $x3, $t1
|
H A D | bsaes-x86_64.pl | 264 $x2,$x3,$y2,$y3,$t1)=@_; 273 pxor $x3, $x2 275 pand $y2, $x3 279 pxor $x3, $x2 281 pxor $t1, $x3
|
/openssl/apps/ |
H A D | client.pem | 14 x3/FZIpL5gXJvvFK6xHY63oq2asyzBATntBgnP4qJFWWcvRx24wF1PnZabxuVoL2
|
/openssl/include/openssl/ |
H A D | asn1t.h.in | 84 /* unused value 0x3 */ 537 # define ASN1_TFLG_SET_ORDER (0x3 << 1) 540 # define ASN1_TFLG_SK_MASK (0x3 << 1) 553 # define ASN1_TFLG_TAG_MASK (0x3 << 3) 574 # define ASN1_TFLG_PRIVATE (0x3<<6) 576 # define ASN1_TFLG_TAG_CLASS (0x3<<6) 584 # define ASN1_TFLG_ADB_MASK (0x3<<8)
|
H A D | crypto.h.in | 369 # define CRYPTO_MEM_CHECK_DISABLE 0x3 /* Control only */
|
H A D | x509.h.in | 159 # define XN_FLAG_FN_MASK (0x3 << 21)
|
H A D | ssl.h.in | 586 # define SSL_CONF_TYPE_DIR 0x3
|