Home
last modified time | relevance | path

Searched refs:digit (Results 1 – 17 of 17) sorted by relevance

/openssl-master/crypto/bn/
A Dbn_intern.c74 int digit = 0; in bn_compute_wNAF() local
82 digit = window_val - next_bit; /* -2^w < digit < 0 */ in bn_compute_wNAF()
93 digit = window_val & (mask >> 1); /* 0 < digit < 2^w */ in bn_compute_wNAF()
97 digit = window_val; /* 0 < digit < 2^w */ in bn_compute_wNAF()
100 if (digit <= -bit || digit >= bit || !(digit & 1)) { in bn_compute_wNAF()
105 window_val -= digit; in bn_compute_wNAF()
118 r[j++] = sign * digit; in bn_compute_wNAF()
A Drsaz_exp_x2.c45 static ossl_inline void put_digit52(uint8_t *out, int out_len, uint64_t digit);
425 uint64_t digit = 0;
430 digit <<= 8;
431 digit += (uint64_t)(in[in_len - 1]);
433 return digit;
461 uint64_t digit = get_digit52(in_str, 7);
463 out[0] = digit & DIGIT_MASK;
466 digit = get_digit52(in_str, BITS2WORD8_SIZE(in_bitsize));
467 out[1] = digit >> 4;
488 *pStr++ = (uint8_t)(digit & 0xFF);
[all …]
/openssl-master/crypto/
A Dpunycode.c153 int digit; in ossl_punycode_decode() local
159 digit = digit_decoded(pEncoded[loop]); in ossl_punycode_decode()
162 if (digit < 0) in ossl_punycode_decode()
164 if ((unsigned int)digit > (maxint - i) / w) in ossl_punycode_decode()
167 i = i + digit * w; in ossl_punycode_decode()
170 if ((unsigned int)digit < t) in ossl_punycode_decode()
A Dcpuid.c66 unsigned int digit, base = 10; in ossl_strtouint64() local
74 while ((digit = todigit(*str++)) < base) in ossl_strtouint64()
75 ret = ret * base + digit; in ossl_strtouint64()
/openssl-master/crypto/ec/
A Decp_nistputil.c214 unsigned char *digit, unsigned char in) in ossl_ec_GFp_nistp_recode_scalar_bits() argument
225 *digit = d; in ossl_ec_GFp_nistp_recode_scalar_bits()
A Dec_mult.c730 int digit = wNAF[i][k]; in ossl_ec_wNAF_mul() local
733 if (digit) { in ossl_ec_wNAF_mul()
734 is_neg = digit < 0; in ossl_ec_wNAF_mul()
737 digit = -digit; in ossl_ec_wNAF_mul()
750 if (!EC_POINT_copy(r, val_sub[i][digit >> 1])) in ossl_ec_wNAF_mul()
769 (group, r, r, val_sub[i][digit >> 1], ctx)) in ossl_ec_wNAF_mul()
A Decp_nistp224.c1150 u8 sign, digit; in batch_mul() local
1208 ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits); in batch_mul()
1211 select_point(digit, 17, pre_comp[num], tmp); in batch_mul()
A Decp_nistp521.c1592 u8 sign, digit; in batch_mul() local
1639 ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits); in batch_mul()
1644 select_point(digit, 17, pre_comp[num], tmp); in batch_mul()
A Decp_nistp256.c1683 u8 sign, digit; in batch_mul() local
1743 ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits); in batch_mul()
1748 select_point(digit, 17, pre_comp[num], tmp); in batch_mul()
A Dec_local.h595 unsigned char *digit,
/openssl-master/test/
A DREADME-dev.md9 where `{nn}` is a two digit number and
22 digit number and `{name}` is a unique name of your choice.
/openssl-master/doc/man3/
A DERR_print_errors.pod34 I<error code> is an 8 digit hexadecimal number. I<library name>,
A DERR_error_string.pod41 I<error code> is an 8 digit hexadecimal number, I<library name> and
/openssl-master/doc/man1/
A Dopenssl-rehash.pod.in59 is a hexadecimal character and I<D> is a single decimal digit.
A Dopenssl-dgst.pod.in67 Print out the digest in two digit groups separated by colons, only relevant if
/openssl-master/crypto/err/
A Dopenssl.txt58 ASN1_R_INVALID_DIGIT:130:invalid digit
433 CRYPTO_R_ILLEGAL_HEX_DIGIT:102:illegal hex digit
947 PROP_R_NOT_AN_HEXADECIMAL_DIGIT:102:not an hexadecimal digit
949 PROP_R_NOT_AN_OCTAL_DIGIT:104:not an octal digit
950 PROP_R_NOT_A_DECIMAL_DIGIT:105:not a decimal digit
/openssl-master/doc/man7/
A Dproxy-certificates.pod92 colons between each byte (every second hex digit):

Completed in 28 milliseconds