Symbol: nn_print
crypto/libecc/include/libecc/utils/dbg_sig.h
32
nn_print(EC_SIG_ALG " " msg, __VA_ARGS__);\
crypto/libecc/include/libecc/utils/print_nn.h
22
void nn_print(const char *msg, nn_src_t a);
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
1045
nn_print("Imported r from file =", &fp_ctx_r);
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
1046
nn_print("Computed r from modulus=", &(fp_ctx_param.r));
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
1059
nn_print("Imported r_square from file =", &fp_ctx_r_square);
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
1060
nn_print("Computed r_square from modulus=", &(fp_ctx_param.r_square));
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
1099
nn_print("Imported r_square from file =", &fp_ctx_pnorm);
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
1100
nn_print("Computed r_square from modulus=", &(fp_ctx_param.p_normalized));
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
415
nn_print(&(parameters_string_names[str_pos]), &(FP_CTX_T_GENERIC_IN(j)->p)); \
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
418
nn_print(&(parameters_string_names[str_pos]), &(FP_T_GENERIC_IN(j)->fp_val)); \
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
421
nn_print(&(parameters_string_names[str_pos]), NN_T_GENERIC_IN(j));\
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
447
nn_print(real_modified_string_names, &(fp_out_ptr[j]->fp_val)); \
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
448
nn_print(expected_modified_string_names, &(FP_T_GENERIC_IN(j)->fp_val)); \
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
452
nn_print(real_modified_string_names, nn_out_ptr[j]);\
crypto/libecc/src/arithmetic_tests/arithmetic_tests.c
453
nn_print(expected_modified_string_names, NN_T_GENERIC_IN(j));\
crypto/libecc/src/examples/basic/curve_basic_examples.c
300
nn_print("k=", &nn_k);
crypto/libecc/src/examples/basic/curve_basic_examples.c
308
nn_print("k=", &nn_k);
crypto/libecc/src/examples/basic/curve_basic_examples.c
337
nn_print("k=", &nn_k);
crypto/libecc/src/examples/basic/curve_basic_examples.c
345
nn_print("k=", &nn_k);
crypto/libecc/src/examples/basic/fp_square_residue.c
107
nn_print("Check primality of p =", &p);
crypto/libecc/src/examples/basic/fp_square_residue.c
119
nn_print("Check primality of p =", &p);
crypto/libecc/src/examples/basic/fp_square_residue.c
58
nn_print("Prime p", &p);
crypto/libecc/src/examples/basic/fp_square_residue.c
73
nn_print("x^2", &(x.fp_val));
crypto/libecc/src/examples/basic/nn_pollard_rho.c
147
nn_print("Finding factors of:", in);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
184
nn_print("d:", &(divisors[n_divisors_found]));
crypto/libecc/src/examples/basic/nn_pollard_rho.c
196
nn_print("Last divisor is prime:", &q);
crypto/libecc/src/examples/basic/nn_pollard_rho.c
201
nn_print("Now performing Pollard's rho on:", &q);
crypto/libecc/src/examples/sig/dsa/dsa.c
543
nn_print("y", &(pub2.y));
crypto/libecc/src/examples/sig/kcdsa/kcdsa.c
747
nn_print("y", &(pub2.y));
crypto/libecc/src/examples/sig/sdsa/sdsa.c
455
nn_print("y", &(pub2.y));
crypto/libecc/src/utils/print_curves.c
37
nn_print("x", &(y_aff.x.fp_val));
crypto/libecc/src/utils/print_curves.c
39
nn_print("y", &(y_aff.y.fp_val));
crypto/libecc/src/utils/print_curves.c
54
nn_print("u", &(pt->u.fp_val));
crypto/libecc/src/utils/print_curves.c
56
nn_print("v", &(pt->v.fp_val));
crypto/libecc/src/utils/print_curves.c
70
nn_print("x", &(pt->x.fp_val));
crypto/libecc/src/utils/print_curves.c
72
nn_print("y", &(pt->y.fp_val));
crypto/libecc/src/utils/print_fp.c
27
nn_print("\t fp_ctx->p", &(ctx->p));
crypto/libecc/src/utils/print_fp.c
30
nn_print("\t fp_ctx->r", &(ctx->r));
crypto/libecc/src/utils/print_fp.c
31
nn_print("\t fp_ctx->r_square", &(ctx->r_square));
crypto/libecc/src/utils/print_fp.c
45
nn_print(msg, &(a->fp_val));
crypto/libecc/src/utils/print_fp.c
60
nn_print("\t fp_val", &(a->fp_val));
crypto/libecc/src/utils/print_keys.c
25
nn_print(msg, &(priv->x));