Home
last modified time | relevance | path

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

/third_party/openssl/test/testutil/
Dformat_output.c21 #define BN_OUTPUT_SIZE (8) macro
170 static const int bn_bytes = (MAX_STRING_WIDTH - 9) / (BN_OUTPUT_SIZE * 2 + 1)
171 * BN_OUTPUT_SIZE;
172 static const int bn_chars = (MAX_STRING_WIDTH - 9) / (BN_OUTPUT_SIZE * 2 + 1)
173 * (BN_OUTPUT_SIZE * 2 + 1) - 1;
213 hex_convert_memory(in, bytes, out, BN_OUTPUT_SIZE); in convert_bn_memory()
248 if (i % (2 * BN_OUTPUT_SIZE) == 2 * BN_OUTPUT_SIZE - 1 && i != n - 1) in convert_bn_memory()
389 } else if (BN_num_bytes(bn) <= BN_OUTPUT_SIZE) { in test_output_bignum()
390 unsigned char buf[BN_OUTPUT_SIZE]; in test_output_bignum()
395 hex_convert_memory(buf, n, p, BN_OUTPUT_SIZE); in test_output_bignum()