Home
last modified time | relevance | path

Searched refs:Y (Results 1 – 25 of 61) sorted by relevance

123

/openssl/crypto/chacha/asm/
H A Dchacha-c64xplus.pl162 || ADD @Y[$b1],@Y[$a1],@Y[$a1]
163 || ADD @Y[$b2],@Y[$a2],@Y[$a2]
164 ADD @Y[$b0],@Y[$a0],@Y[$a0]
165 || ADD @Y[$b3],@Y[$a3],@Y[$a3]
171 XOR @Y[$a0],@Y[$d0],@Y[$d0]
234 XOR @Y[$a0],@Y[$d0],@Y[$d0]
250 ADD @Y[$d1],@Y[$c1],@Y[$c1]
256 ADD @Y[$d0],@Y[$c0],@Y[$c0]
262 XOR @Y[$c0],@Y[$b0],@Y[$b0]
278 ADD @Y[$b2],@Y[$a2],@Y[$a2]
[all …]
/openssl/crypto/bn/
H A Dbn_gcd.c52 BN_zero(Y); in bn_mod_inverse_no_branch()
148 Y = X; in bn_mod_inverse_no_branch()
162 if (!BN_sub(Y, n, Y)) in bn_mod_inverse_no_branch()
169 if (!Y->neg && BN_ucmp(Y, n) < 0) { in bn_mod_inverse_no_branch()
241 BN_zero(Y); in int_bn_mod_inverse()
309 if (!BN_uadd(Y, Y, n)) in int_bn_mod_inverse()
313 if (!BN_rshift1(Y, Y)) in int_bn_mod_inverse()
345 if (!BN_uadd(Y, Y, X)) in int_bn_mod_inverse()
472 Y = X; in int_bn_mod_inverse()
487 if (!BN_sub(Y, n, Y)) in int_bn_mod_inverse()
[all …]
H A Dbn_rsa_fips186_4.c244 int ossl_bn_rsa_fips186_4_derive_prime(BIGNUM *Y, BIGNUM *X, const BIGNUM *Xin, in ossl_bn_rsa_fips186_4_derive_prime() argument
324 if (!BN_mod_sub(Y, R, X, r1r2x2, ctx) || !BN_add(Y, Y, X)) in ossl_bn_rsa_fips186_4_derive_prime()
330 if (BN_num_bits(Y) > bits) { in ossl_bn_rsa_fips186_4_derive_prime()
339 if (BN_copy(y1, Y) == NULL in ossl_bn_rsa_fips186_4_derive_prime()
344 int rv = BN_check_prime(Y, ctx, cb); in ossl_bn_rsa_fips186_4_derive_prime()
356 if (!BN_add(Y, Y, r1r2x2)) in ossl_bn_rsa_fips186_4_derive_prime()
/openssl/test/recipes/04-test_pem_reading_data/
H A Dcert-onecolumn.pem24 Y
52 Y
54 Y
118 Y
134 Y
158 Y
162 Y
214 Y
218 Y
236 Y
[all …]
H A Ddsa-onecolumn.pem207 Y
216 Y
224 Y
254 Y
351 Y
406 Y
514 Y
620 Y
828 Y
899 Y
[all …]
/openssl/crypto/ec/
H A Dec2_smpl.c225 point->Y = BN_new(); in ossl_ec_GF2m_simple_point_init()
230 BN_free(point->Y); in ossl_ec_GF2m_simple_point_init()
241 BN_free(point->Y); in ossl_ec_GF2m_simple_point_finish()
262 if (!BN_copy(dest->Y, src->Y)) in ossl_ec_GF2m_simple_point_copy()
493 return BN_GF2m_add(point->Y, point->X, point->Y); in ossl_ec_GF2m_simple_invert()
598 return ((BN_cmp(a->X, b->X) == 0) && BN_cmp(a->Y, b->Y) == 0) ? 0 : 1; in ossl_ec_GF2m_simple_cmp()
755 && !group->meth->field_encode(group, r->Y, r->Y, ctx)) in ec_GF2m_simple_ladder_pre()
790 || !group->meth->field_sqr(group, s->Y, s->Y, ctx) in ec_GF2m_simple_ladder_step()
791 || !group->meth->field_mul(group, s->Y, s->Y, group->b, ctx) in ec_GF2m_simple_ladder_step()
792 || !BN_GF2m_add(r->X, r->Y, s->Y)) in ec_GF2m_simple_ladder_step()
[all …]
H A Decp_nistz256.c55 BN_ULONG Y[P256_LIMBS]; member
683 || !ecp_nistz256_bignum_to_field_elem(temp[0].Y, point[i]->Y) in ecp_nistz256_windowed_mul()
751 ecp_nistz256_neg(temp[1].Y, temp[0].Y); in ecp_nistz256_windowed_mul()
752 copy_conditional(temp[0].Y, temp[1].Y, (wvalue & 1)); in ecp_nistz256_windowed_mul()
775 ecp_nistz256_neg(temp[1].Y, temp[0].Y); in ecp_nistz256_windowed_mul()
776 copy_conditional(temp[0].Y, temp[1].Y, wvalue & 1); in ecp_nistz256_windowed_mul()
903 !ecp_nistz256_bignum_to_field_elem(temp.Y, P->Y)) { in ecp_nistz256_mult_precompute()
944 && (ret = bn_set_words(out->Y, in->Y, P256_LIMBS)) in ecp_nistz256_set_from_affine()
1078 p.p.Y[0] | p.p.Y[1] | p.p.Y[2] | p.p.Y[3]); in ecp_nistz256_points_mul()
1081 p.p.Y[4] | p.p.Y[5] | p.p.Y[6] | p.p.Y[7]); in ecp_nistz256_points_mul()
[all …]
H A Decp_nistputil.c83 #define Y(I) (&((char *)point_array)[(3*(I) + 1) * felem_size]) in ossl_ec_GFp_nistp_points_make_affine_internal() macro
126 felem_mul(Y(i), Y(i), Z(i)); /* Y/(Z^3) */ in ossl_ec_GFp_nistp_points_make_affine_internal()
128 felem_contract(Y(i), Y(i)); in ossl_ec_GFp_nistp_points_make_affine_internal()
H A Decp_smpl.c325 point->Y = BN_new(); in ossl_ec_GFp_simple_point_init()
341 BN_free(point->Y); in ossl_ec_GFp_simple_point_finish()
357 if (!BN_copy(dest->Y, src->Y)) in ossl_ec_GFp_simple_point_copy()
404 if (!group->meth->field_encode(group, point->Y, point->Y, ctx)) in ossl_ec_GFp_simple_set_Jprojective_coordinates_GFp()
947 return BN_usub(point->Y, group->field, point->Y); in ossl_ec_GFp_simple_invert()
1142 tmp1_ = a->Y; in ossl_ec_GFp_simple_cmp()
1150 tmp2_ = b->Y; in ossl_ec_GFp_simple_cmp()
1335 if (!group->meth->field_mul(group, p->Y, p->Y, tmp, ctx)) in ossl_ec_GFp_simple_points_make_affine()
1467 || !group->meth->field_mul(group, p->Y, p->Y, temp, ctx)) in ossl_ec_GFp_simple_blind_coordinates()
1503 t5 = s->Y; in ossl_ec_GFp_simple_ladder_pre()
[all …]
H A Dcurve25519.c1932 fe_copy(r->Y, p->Y); in ge_p3_to_p2()
1954 fe_mul(r->Y, p->Y, p->Z); in ge_p1p1_to_p2()
1962 fe_mul(r->Y, p->Y, p->Z); in ge_p1p1_to_p3()
1975 fe_add(r->Y, p->X, p->Y); in ge_p2_dbl()
1997 fe_sub(r->Y, p->Y, p->X); in ge_madd()
2003 fe_add(r->Y, r->Z, r->Y); in ge_madd()
2014 fe_sub(r->Y, p->Y, p->X); in ge_msub()
2020 fe_add(r->Y, r->Z, r->Y); in ge_msub()
2031 fe_sub(r->Y, p->Y, p->X); in ge_add()
2038 fe_add(r->Y, r->Z, r->Y); in ge_add()
[all …]
H A Dec_mult.c112 BN_set_flags((P)->Y, (flags)); \
257 || (bn_wexpand(s->Y, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
260 || (bn_wexpand(r->Y, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
263 || (bn_wexpand(p->Y, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
287 BN_consttime_swap(c, (a)->Y, (b)->Y, w); \ in ossl_ec_scalar_mul_ladder()
/openssl/crypto/sm3/
H A Dsm3_local.h79 #define FF0(X,Y,Z) (X ^ Y ^ Z) argument
80 #define GG0(X,Y,Z) (X ^ Y ^ Z) argument
82 #define FF1(X,Y,Z) ((X & Y) | ((X | Y) & Z)) argument
83 #define GG1(X,Y,Z) ((Z ^ (X & (Y ^ Z)))) argument
/openssl/test/
H A Dsmcont.bin11Y���A�j��T~@5�0����yQ!�bdO�l�ר�b �E��6W�_ҹk��!��&�Jâ����7��M�y3� �lDw���t�ןL��2ʰ�D ��dN�ۂ�O�`…
21 …l������A� w�hˡAgP�}�U{#�4M}�����I��x3C�h�e�B>�F�4-b�$2AX�H]{ �"�b�悶Nj�Y���^��1"'h����Կ�Vn̢�…
22YKnl �$��s������s����9w�a �#L._�R�����C 6����̸��W����m�߻��D�����gL��J��DGs����I��c��z��`
23Y:Œ�<��qT co�+8���q�e z}�f�U�CfK2`�Z,m3 ��B@�B4��B�Z b�Tu>�rƶ����ץ�58B �\�@�� L= ���b��Lj…
26 …|�7��D��r�����ݚ=7��_��8�Mo�χ�����~��C �x/�����g�ġ�|i�8��� 4w�'��ːY���)��W��<��d��;�i�…
32 …�8��4 ���xq�fBӥ�!��ʆ0i+�Xp��|�(=��J���X ���&�{>pNU�;<4���NNհ%���-d Y����7�"�ܓ����� �\�#…
33 …<�OϤ�y��dw�W,�)��C����2�r��nj ��M�7 �q���d��1� #��(~X<c��i�w��Is����Y������c�]�xB/κ�U��"…
/openssl/crypto/aria/
H A Daria.c39 #define GET_U8_BE(X, Y) ((uint8_t)((X) >> ((3 - Y) * 8))) argument
442 #define _ARIA_GSRK(RK, X, Y, Q, R) \ argument
446 (((Y)[((Q) ) % 4]) >> (R)) ^ \
447 (((Y)[((Q) + 3) % 4]) << (32 - (R))); \
450 (((Y)[((Q) + 1) % 4]) >> (R)) ^ \
451 (((Y)[((Q) ) % 4]) << (32 - (R))); \
454 (((Y)[((Q) + 2) % 4]) >> (R)) ^ \
455 (((Y)[((Q) + 1) % 4]) << (32 - (R))); \
458 (((Y)[((Q) + 3) % 4]) >> (R)) ^ \
459 (((Y)[((Q) + 2) % 4]) << (32 - (R))); \
[all …]
/openssl/fuzz/corpora/conf/
H A D8827de4417762ae21635d3c147fb26c79bef3866598 $*$$$$$$$[0Y
780 E::=�Y� ���=]
821 ~dg::=Y'
886 Y::=0!=
H A D5f4cc360e084b4825ce44e99d4fd291d5aa8c68a860 $$$$$$$$[0Y
1008 E::=�Y�����=]
1159 Y::=00
H A Da6aaee0a7396d0d05e4aafb37765be1bc6dc45d813 e::==`Y
/openssl/external/perl/Text-Template-1.56/t/
H A Dbasic.t15 $X::v = $Y::v = 0; # Suppress `var used only once'
49 $Y::v = "ABC";
/openssl/fuzz/corpora/bndiv/
H A D9ab3723440c3101d8eae475de5dc05854581d4f687 …���!�0���00000000������������@��b�0ܹ���'���~~��'~*���������������Y���;����������������…
/openssl/test/certs/
H A Dserver-ecdsa-cert.pem14 Y/JiO6weK/VTlqCLn7zV9LcDT4gU18UCn85UV1XlVYKXZlaXYQ==
H A Dca-name2.pem5 3Y/SMbKIFczEhixc4mmLhPSno1PfkeO/UYn78HwQDTutrDVidfV///RuVI8FppIj
H A Droot-cert2.pem17 Y/jZkfB8+3DRBA8U4/rDqJF6gj90vrugxg1Pr3abAp7/7WUv/oh1Qo/UXCbVK7Mj
/openssl/test/recipes/15-test_dsaparam_data/valid/
H A Dp3072_q256_t1862.pem17 I8nsqn7rnMZ+ROPafj/QHuQZrrE9qq8PN4OuuZXCn6JrG/9goATXjsX0dwkSW+/Y
/openssl/test/ocsp-tests/
H A DISDOSC_D2.ors32 fBIRKjnK621vAWvc7UR+0hqnZ+Y=
/openssl/util/
H A Dcheck-format-test-positives.c52 #define Y 2 /*@ indent of preprocessor directive off by 1 (must be 0) */

Completed in 99 milliseconds

123