Home
last modified time | relevance | path

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

/openssl/crypto/bn/
H A Drsaz_exp_x2.c523 uint64_t digit = 0;
529 digit <<= 8;
532 return digit;
552 uint64_t digit;
554 memcpy(&digit, in_str, sizeof(digit));
557 memcpy(&digit, in_str, sizeof(digit));
589 digit >>= 8;
615 digit = in[0];
616 memcpy(out_str, &digit, sizeof(digit));
618 digit = digit >> 48 | in[1] << 4;
[all …]
H A Dbn_intern.c70 int digit = 0; in bn_compute_wNAF() local
78 digit = window_val - next_bit; /* -2^w < digit < 0 */ in bn_compute_wNAF()
89 digit = window_val & (mask >> 1); /* 0 < digit < 2^w */ in bn_compute_wNAF()
93 digit = window_val; /* 0 < digit < 2^w */ in bn_compute_wNAF()
96 if (digit <= -bit || digit >= bit || !(digit & 1)) { in bn_compute_wNAF()
101 window_val -= digit; in bn_compute_wNAF()
114 r[j++] = sign * digit; in bn_compute_wNAF()
/openssl/crypto/
H 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()
H 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/crypto/ec/
H 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()
H A Dec_mult.c719 int digit = wNAF[i][k]; in ossl_ec_wNAF_mul() local
722 if (digit) { in ossl_ec_wNAF_mul()
723 is_neg = digit < 0; in ossl_ec_wNAF_mul()
726 digit = -digit; in ossl_ec_wNAF_mul()
739 if (!EC_POINT_copy(r, val_sub[i][digit >> 1])) in ossl_ec_wNAF_mul()
758 (group, r, r, val_sub[i][digit >> 1], ctx)) in ossl_ec_wNAF_mul()
H A Decp_nistp224.c1149 u8 sign, digit; in batch_mul() local
1207 ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits); in batch_mul()
1210 select_point(digit, 17, pre_comp[num], tmp); in batch_mul()
H A Decp_nistp384.c1383 u8 sign, digit; in batch_mul() local
1431 ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits); in batch_mul()
1436 select_point(digit, 17, pre_comp[num], tmp); in batch_mul()
H A Decp_nistp521.c1591 u8 sign, digit; in batch_mul() local
1638 ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits); in batch_mul()
1643 select_point(digit, 17, pre_comp[num], tmp); in batch_mul()
H A Decp_nistp256.c1685 u8 sign, digit; in batch_mul() local
1745 ossl_ec_GFp_nistp_recode_scalar_bits(&sign, &digit, bits); in batch_mul()
1750 select_point(digit, 17, pre_comp[num], tmp); in batch_mul()
H A Dec_local.h620 unsigned char *digit,
/openssl/test/
H 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/doc/man3/
H A DERR_print_errors.pod34 I<error code> is an 8 digit hexadecimal number. I<library name>,
H A DERR_error_string.pod41 I<error code> is an 8 digit hexadecimal number, I<library name> and
/openssl/doc/man1/
H A Dopenssl-rehash.pod.in59 is a hexadecimal character and I<D> is a single decimal digit.
H A Dopenssl-dgst.pod.in70 Print out the digest in two digit groups separated by colons, only relevant if
/openssl/crypto/err/
H A Dopenssl.txt59 ASN1_R_INVALID_DIGIT:130:invalid digit
476 CRYPTO_R_ILLEGAL_HEX_DIGIT:102:illegal hex digit
1022 PROP_R_NOT_AN_HEXADECIMAL_DIGIT:102:not an hexadecimal digit
1024 PROP_R_NOT_AN_OCTAL_DIGIT:104:not an octal digit
1025 PROP_R_NOT_A_DECIMAL_DIGIT:105:not a decimal digit
/openssl/doc/man7/
H A Dproxy-certificates.pod92 colons between each byte (every second hex digit):

Completed in 71 milliseconds