Home | History | Annotate | Download | only in apps

Lines Matching defs:bn

53 #include <openssl/bn.h>
68 BIGNUM *bn=NULL;
132 bn=BN_new();
133 BN_generate_prime_ex(bn,bits,safe,NULL,NULL,NULL);
134 s=hex ? BN_bn2hex(bn) : BN_bn2dec(bn);
141 BN_hex2bn(&bn,argv[0]);
143 BN_dec2bn(&bn,argv[0]);
145 BN_print(bio_out,bn);
147 BN_is_prime_ex(bn,checks,NULL,NULL) ? "" : "not ");
150 BN_free(bn);