/openssl-master/crypto/bn/asm/ |
A D | co-586.pl | 33 &comment("mul a[$ai]*b[$bi]"); 67 if ($ai == $bi) 96 if ($ai == $bi) 150 $ai=$as; 168 $na=($ai-1); 185 $ai--; 239 $ai=$as; 247 if (($ai-1) < ($bi+1)) 256 $na=$ai-1; 264 if ($ai == $bi) [all …]
|
A D | x86_64-mont5.pl | 1341 mov $ai,%rax 1350 mov $ai,%rax 1356 mov $ai,%rax 1369 mov $ai,%rax 1385 mov $ai,%rax 1392 mov $ai,%rax 1401 mov $ai,%rax 1418 mov $ai,%rax 1426 mov $ai,%rax 1467 mov $ai,%rax [all …]
|
A D | s390x.S | 368 #define mul_add_c(ai,bi,c1,c2,c3) \ argument 369 lg %r7,ai*8(%r3); \ 554 #define sqr_add_c(ai,c1,c2,c3) \ argument 555 lg %r7,ai*8(%r3); \ 561 #define sqr_add_c2(ai,aj,c1,c2,c3) \ argument 562 lg %r7,ai*8(%r3); \
|
A D | x86_64-mont.pl | 833 my ($a0,$a1,$ai)=("%r14","%r15","%rbx");
|
/openssl-master/crypto/x509/ |
A D | v3_tlsf.c | 66 ASN1_INTEGER *ai; in STACK_OF() local 69 ai = sk_ASN1_INTEGER_value(tls_feature, i); in STACK_OF() 70 tlsextid = ASN1_INTEGER_get(ai); in STACK_OF() 77 X509V3_add_value_int(NULL, ai, &ext_list); in STACK_OF() 92 ASN1_INTEGER *ai = NULL; in v2i_TLS_FEATURE() local 125 if ((ai = ASN1_INTEGER_new()) == NULL in v2i_TLS_FEATURE() 126 || !ASN1_INTEGER_set(ai, tlsextid) in v2i_TLS_FEATURE() 127 || sk_ASN1_INTEGER_push(tlsf, ai) <= 0) { in v2i_TLS_FEATURE() 132 ai = NULL; in v2i_TLS_FEATURE() 138 ASN1_INTEGER_free(ai); in v2i_TLS_FEATURE()
|
A D | x509_cmp.c | 22 const X509_CINF *ai, *bi; in X509_issuer_and_serial_cmp() local 28 ai = &a->cert_info; in X509_issuer_and_serial_cmp() 30 i = ASN1_INTEGER_cmp(&ai->serialNumber, &bi->serialNumber); in X509_issuer_and_serial_cmp() 33 return X509_NAME_cmp(ai->issuer, bi->issuer); in X509_issuer_and_serial_cmp()
|
/openssl-master/apps/lib/ |
A D | s_socket.c | 83 const BIO_ADDRINFO *ai = NULL; in init_client() local 108 for (ai = res; ai != NULL; ai = BIO_ADDRINFO_next(ai)) { in init_client() 113 || family == BIO_ADDRINFO_family(ai)) in init_client() 114 && (type == 0 || type == BIO_ADDRINFO_socktype(ai)) in init_client() 116 || protocol == BIO_ADDRINFO_protocol(ai))); in init_client() 120 if (BIO_ADDRINFO_family(bi) == BIO_ADDRINFO_family(ai)) in init_client() 128 *sock = BIO_socket(BIO_ADDRINFO_family(ai), BIO_ADDRINFO_socktype(ai), in init_client() 129 BIO_ADDRINFO_protocol(ai), 0); in init_client() 164 if (!BIO_connect(*sock, BIO_ADDRINFO_address(ai), in init_client() 193 hostname = BIO_ADDR_hostname_string(BIO_ADDRINFO_address(ai), 1); in init_client()
|
A D | apps.c | 1453 ASN1_INTEGER *ai = NULL; in IMPLEMENT_LHASH_HASH_FN() local 1455 ai = ASN1_INTEGER_new(); in IMPLEMENT_LHASH_HASH_FN() 1456 if (ai == NULL) in IMPLEMENT_LHASH_HASH_FN() 1483 *retai = ai; in IMPLEMENT_LHASH_HASH_FN() 1484 ai = NULL; in IMPLEMENT_LHASH_HASH_FN() 1489 ASN1_INTEGER_free(ai); in IMPLEMENT_LHASH_HASH_FN() 1499 ASN1_INTEGER *ai = NULL; in save_serial() local 1533 *retai = ai; in save_serial() 1534 ai = NULL; in save_serial() 1540 ASN1_INTEGER_free(ai); in save_serial() [all …]
|
/openssl-master/crypto/asn1/ |
A D | a_int.c | 467 if (ai == NULL) { in bn_to_asn1_string() 470 ret = ai; in bn_to_asn1_string() 500 if (ret != ai) in bn_to_asn1_string() 510 if ((ai->type & ~V_ASN1_NEG) != itype) { in asn1_string_to_bn() 515 ret = BN_bin2bn(ai->data, ai->length, bn); in asn1_string_to_bn() 520 if (ai->type & V_ASN1_NEG) in asn1_string_to_bn() 566 return bn_to_asn1_string(bn, ai, V_ASN1_INTEGER); in BN_to_ASN1_INTEGER() 569 BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn) in ASN1_INTEGER_to_BN() argument 571 return asn1_string_to_bn(ai, bn, V_ASN1_INTEGER); in ASN1_INTEGER_to_BN() 609 return bn_to_asn1_string(bn, ai, V_ASN1_ENUMERATED); in BN_to_ASN1_ENUMERATED() [all …]
|
A D | asn1_parse.c | 103 ASN1_INTEGER *ai = NULL; in asn1_parse2() local 265 ai = d2i_ASN1_INTEGER(NULL, &opp, len + hl); in asn1_parse2() 266 if (ai != NULL) { in asn1_parse2() 269 if (ai->type == V_ASN1_NEG_INTEGER) in asn1_parse2() 272 for (i = 0; i < ai->length; i++) { in asn1_parse2() 273 if (BIO_printf(bp, "%02X", ai->data[i]) <= 0) in asn1_parse2() 276 if (ai->length == 0) { in asn1_parse2() 285 ASN1_INTEGER_free(ai); in asn1_parse2() 286 ai = NULL; in asn1_parse2() 354 ASN1_INTEGER_free(ai); in asn1_parse2()
|
/openssl-master/crypto/bn/ |
A D | bn_mod.c | 51 size_t i, ai, bi, mtop = m->top; in bn_mod_add_fixed_top() local 70 for (i = 0, ai = 0, bi = 0, carry = 0; i < mtop;) { in bn_mod_add_fixed_top() 72 temp = ((ap[ai] & mask) + carry) & BN_MASK2; in bn_mod_add_fixed_top() 80 ai += (i - a->dmax) >> (8 * sizeof(i) - 1); in bn_mod_add_fixed_top() 135 size_t i, ai, bi, mtop = m->top; in bn_mod_sub_fixed_top() local 146 for (i = 0, ai = 0, bi = 0, borrow = 0; i < mtop;) { in bn_mod_sub_fixed_top() 148 ta = ap[ai] & mask; in bn_mod_sub_fixed_top() 157 ai += (i - a->dmax) >> (8 * sizeof(i) - 1); in bn_mod_sub_fixed_top()
|
/openssl-master/crypto/chacha/asm/ |
A D | chacha-x86.pl | 73 my ($ai,$bi,$ci,$di,$i)=@_; 104 &mov (&DWP(4*$cp,"esp"),$c_) if ($ai>0 && $ai<3); 108 &mov ($c_,&DWP(4*$cn,"esp")) if ($ai>0 && $ai<3); 116 &mov (&DWP(4*$ai,"esp"),$a); 381 my ($ai,$bi,$ci,$di,$i)=@_; 412 &movdqa(&QWP(16*$cp-128,"ebx"),$xc_) if ($ai>0 && $ai<3); 416 &movdqa($xc_,&QWP(16*$cn-128,"ebx")) if ($ai>0 && $ai<3); 427 &movdqa (&QWP(16*$ai-128,"ebx"),$xa); 795 my ($ai,$bi,$ci,$di,$i)=@_; 826 &vmovdqa (&QWP(16*$cp-128,"ebx"),$xc_) if ($ai>0 && $ai<3); [all …]
|
/openssl-master/doc/man3/ |
A D | ASN1_INTEGER_get_int64.pod | 22 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai); 23 BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn); 31 ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(const BIGNUM *bn, ASN1_ENUMERATED *ai); 32 BIGNUM *ASN1_ENUMERATED_to_BN(const ASN1_ENUMERATED *ai, BIGNUM *bn); 62 BN_to_ASN1_INTEGER() converts B<BIGNUM> I<bn> to an B<ASN1_INTEGER>. If I<ai> 63 is NULL a new B<ASN1_INTEGER> structure is returned. If I<ai> is not NULL then 66 ASN1_INTEGER_to_BN() converts ASN1_INTEGER I<ai> into a B<BIGNUM>. If I<bn> is
|
/openssl-master/demos/certs/apps/ |
A D | ckey.pem | 14 /bbD519QIdkvayy1QjEf32GV/UjUVmlULMLBcDy0DGjtL3+XpIhLKWDNxN1v1/ai
|
/openssl-master/apps/ |
A D | client.pem | 39 /bbD519QIdkvayy1QjEf32GV/UjUVmlULMLBcDy0DGjtL3+XpIhLKWDNxN1v1/ai
|
/openssl-master/test/helpers/ |
A D | handshake.c | 1292 const BIO_ADDRINFO *ai = NULL; in create_sctp_socks() local 1310 for (ai = res; ai != NULL; ai = BIO_ADDRINFO_next(ai)) { in create_sctp_socks() 1311 family = BIO_ADDRINFO_family(ai); in create_sctp_socks() 1321 || !BIO_listen(lsock, BIO_ADDRINFO_address(ai), in create_sctp_socks()
|
/openssl-master/apps/include/ |
A D | apps.h | 227 int rand_serial(BIGNUM *b, ASN1_INTEGER *ai);
|
/openssl-master/include/openssl/ |
A D | asn1.h.in | 708 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai); 709 BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn); 717 ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(const BIGNUM *bn, ASN1_ENUMERATED *ai); 718 BIGNUM *ASN1_ENUMERATED_to_BN(const ASN1_ENUMERATED *ai, BIGNUM *bn);
|