Searched defs:bn (Results 1 - 8 of 8) sorted by relevance

/bind-9.11.3/lib/dns/
H A Dopensslecdsa_link.c34 #include <openssl/bn.h>
130 BN_bn2bin_fixed(const BIGNUM *bn, unsigned char *buf, int size) { argument
131 int bytes = size - BN_num_bytes(bn);
135 BN_bn2bin(bn, buf);
H A Dpkcs11dh_link.c1043 CK_BYTE *bn; local
1045 bn = isc_mem_get(key->mctx, priv.elements[i].length);
1046 if (bn == NULL)
1048 memmove(bn, priv.elements[i].data, priv.elements[i].length);
1054 attr->pValue = bn;
1060 attr->pValue = bn;
1066 attr->pValue = bn;
1072 attr->pValue = bn;
H A Dpkcs11dsa_link.c1026 CK_BYTE *bn; local
1028 bn = isc_mem_get(key->mctx, priv.elements[i].length);
1029 if (bn == NULL)
1031 memmove(bn, priv.elements[i].data, priv.elements[i].length);
1037 attr->pValue = bn;
1044 attr->pValue = bn;
1050 attr->pValue = bn;
1056 attr->pValue = bn;
1062 attr->pValue = bn;
H A Dopenssldh_link.c650 BIGNUM *bn; local
651 bn = BN_bin2bn(priv.elements[i].data,
653 if (bn == NULL)
658 p = bn;
661 g = bn;
664 priv_key = bn;
667 pub_key = bn;
H A Dopenssldsa_link.c195 BN_bn2bin_fixed(const BIGNUM *bn, unsigned char *buf, int size) { argument
196 int bytes = size - BN_num_bytes(bn);
199 BN_bn2bin(bn, buf);
726 BIGNUM *bn; local
727 bn = BN_bin2bn(priv.elements[i].data,
729 if (bn == NULL)
734 p = bn;
737 q = bn;
740 g = bn;
743 priv_key = bn;
[all...]
H A Dopensslrsa_link.c45 #include <openssl/bn.h>
1581 BIGNUM *bn; local
1588 bn = BN_bin2bn(priv.elements[i].data,
1590 if (bn == NULL)
1594 n = bn;
1597 e = bn;
1600 d = bn;
1603 p = bn;
1606 q = bn;
1609 dmp1 = bn;
[all...]
H A Dpkcs11rsa_link.c1953 CK_BYTE *bn; local
1961 bn = isc_mem_get(key->mctx, priv.elements[i].length);
1962 if (bn == NULL)
1964 memmove(bn, priv.elements[i].data,
1972 attr->pValue = bn;
1979 attr->pValue = bn;
1986 attr->pValue = bn;
1992 attr->pValue = bn;
1998 attr->pValue = bn;
2005 attr->pValue = bn;
[all...]
/bind-9.11.3/bin/named/
H A Dserver.c11845 const char *bn; local
11856 bn = "addzone";
11858 bn = "modzone";
11869 CHECK(cfg_parse_buffer3(ns_g_addparser, &argbuf, bn, 0,
11888 (void) putstr(text, bn);
11902 (void) putstr(text, bn);

Completed in 104 milliseconds