Symbol: BN_BYTES
crypto/openssl/crypto/asn1/t_pkey.c
65
if (BN_num_bytes(num) <= BN_BYTES) {
crypto/openssl/crypto/bn/bn_conv.c
165
m = (BN_BYTES * 2 <= j) ? BN_BYTES * 2 : j;
crypto/openssl/crypto/bn/bn_conv.c
179
j -= BN_BYTES * 2;
crypto/openssl/crypto/bn/bn_conv.c
23
buf = OPENSSL_malloc(a->top * BN_BYTES * 2 + 2);
crypto/openssl/crypto/bn/bn_exp.c
46
#define BN_CONSTTIME_SIZE_LIMIT (INT_MAX / BN_BYTES / 256)
crypto/openssl/crypto/bn/bn_lib.c
505
n = ((len - 1) / BN_BYTES) + 1; /* Number of resulting bignum chunks */
crypto/openssl/crypto/bn/bn_lib.c
516
for (; len > 0 && m < BN_BYTES * 8; len--, s += inc, m += 8) {
crypto/openssl/crypto/bn/bn_lib.c
589
atop = a->dmax * BN_BYTES;
crypto/openssl/crypto/bn/bn_lib.c
609
atop = a->top * BN_BYTES;
crypto/openssl/crypto/bn/bn_lib.c
613
l = a->d[i / BN_BYTES];
crypto/openssl/crypto/bn/bn_lib.c
615
byte = (unsigned char)(l >> (8 * (i % BN_BYTES)) & mask);
crypto/openssl/crypto/bn/bn_local.h
62
#define BN_SOFT_LIMIT (4096 / BN_BYTES)
crypto/openssl/crypto/bn/bn_srp.c
18
#if (BN_BYTES == 8)
crypto/openssl/crypto/bn/bn_srp.c
26
#elif (BN_BYTES == 4)
crypto/openssl/crypto/der_writer.c
140
*top_byte = ((bn_get_words(v)[(n - 1) / BN_BYTES]) >> (8 * ((n - 1) % BN_BYTES)))
crypto/openssl/crypto/ec/ecp_nistz256.c
1019
for (i = 0; i < bn_get_top(scalar) * BN_BYTES; i += BN_BYTES) {
crypto/openssl/crypto/ec/ecp_nistz256.c
1020
BN_ULONG d = bn_get_words(scalar)[i / BN_BYTES];
crypto/openssl/crypto/ec/ecp_nistz256.c
1026
if (BN_BYTES == 8) {
crypto/openssl/crypto/ec/ecp_nistz256.c
650
for (j = 0; j < bn_get_top(scalars[i]) * BN_BYTES; j += BN_BYTES) {
crypto/openssl/crypto/ec/ecp_nistz256.c
651
BN_ULONG d = bn_get_words(scalars[i])[j / BN_BYTES];
crypto/openssl/crypto/ec/ecp_nistz256.c
657
if (BN_BYTES == 8) {
crypto/openssl/crypto/encode_decode/encoder_lib.c
726
if (BN_num_bytes(bn) <= BN_BYTES) {
crypto/openssl/include/openssl/bn.h
54
#define BN_BITS2 (BN_BYTES * 8)