Searched refs:digit (Results 1 – 17 of 17) sorted by relevance
/openssl-master/crypto/bn/ |
A D | bn_intern.c | 74 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 D | rsaz_exp_x2.c | 45 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 D | punycode.c | 153 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 D | cpuid.c | 66 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 D | ecp_nistputil.c | 214 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 D | ec_mult.c | 730 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 D | ecp_nistp224.c | 1150 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 D | ecp_nistp521.c | 1592 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 D | ecp_nistp256.c | 1683 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 D | ec_local.h | 595 unsigned char *digit,
|
/openssl-master/test/ |
A D | README-dev.md | 9 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 D | ERR_print_errors.pod | 34 I<error code> is an 8 digit hexadecimal number. I<library name>,
|
A D | ERR_error_string.pod | 41 I<error code> is an 8 digit hexadecimal number, I<library name> and
|
/openssl-master/doc/man1/ |
A D | openssl-rehash.pod.in | 59 is a hexadecimal character and I<D> is a single decimal digit.
|
A D | openssl-dgst.pod.in | 67 Print out the digest in two digit groups separated by colons, only relevant if
|
/openssl-master/crypto/err/ |
A D | openssl.txt | 58 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 D | proxy-certificates.pod | 92 colons between each byte (every second hex digit):
|
Completed in 28 milliseconds