Home | History | Annotate | Download | only in apps

Lines Matching defs:bn

69 #include <openssl/bn.h>
2415 BIGNUM *bn = NULL;
2421 bn = ASN1_INTEGER_to_BN(X509_get_serialNumber(x509),NULL);
2422 if (!bn)
2424 if (BN_is_zero(bn))
2427 row[DB_serial]=BN_bn2hex(bn);
2428 BN_free(bn);