Searched refs:bn2 (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dopenssldh_link.c74 static BIGNUM bn2, bn768, bn1024, bn1536; variable
198 dh->g = &bn2;
256 if (dh->g == &bn2)
292 if (dh->g == &bn2 &&
407 dh->g = &bn2;
410 if (BN_cmp(dh->g, &bn2) == 0) {
412 dh->g = &bn2;
560 BN_cmp(dh->g, &bn2) == 0)
566 dh->g = &bn2;
572 dh->g = &bn2;
[all...]
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dossl_bn.c310 * bn.##func(bn2) -> aBN \
316 BIGNUM *bn1, *bn2 = GetBNPtr(other), *result; \
322 if (!BN_##func(result, bn1, bn2)) { \
335 * bn.##func(bn2) -> aBN \
341 BIGNUM *bn1, *bn2 = GetBNPtr(other), *result; \
347 if (!BN_##func(result, bn1, bn2, ossl_bn_ctx)) { \
363 * bn1 / bn2 => [result, remainder]
368 BIGNUM *bn1, *bn2 = GetBNPtr(other), *r1, *r2; local
380 if (!BN_div(r1, r2, bn1, bn2, ossl_bn_ctx)) {
394 * bn.##func(bn1, bn2)
621 BIGNUM *bn1, *bn2; local
[all...]
H A Dossl_pkey_ec.c1490 BIGNUM *bn1 = NULL, *bn2 = NULL; local
1504 bn2 = GetBNPtr(points_v);
1506 if (EC_POINT_mul(group, point2, bn2, point1, bn1, ossl_bn_ctx) != 1)
1535 bn2 = GetBNPtr(bn_v2);
1537 if (EC_POINTs_mul(group, point2, bn2, points_len, points, bignums, ossl_bn_ctx) != 1) {
/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dtest_pkey_ec.rb195 bn2 = OpenSSL::BN.new('20')
199 p2 = p1.mul(bn1, bn2)
201 p2 = p1.mul([bn1, bn2], [p1])
203 p2 = p1.mul([bn1, bn2], [p1], bn2)
/macosx-10.10/CPANInternal-159.1/Crypt-OpenSSL-Bignum-0.04/
H A Dtest.pl78 my $bn2 = $bn->new_from_bin( $bin_string );
79 ok( $bn2 );
80 ok( $bn2->to_bin() eq $bn->to_bin() );
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dbn.c220 BN_cmp(const BIGNUM *bn1, const BIGNUM *bn2) argument
223 (const heim_integer *)bn2);
/macosx-10.10/CommonCrypto-60061/include/
H A DCommonBigNum.h281 @param bn2 - a BigNum.
282 @result Returns -1 if bn1 is less than bn2.
283 Returns 0 if bn1 and bn2 are equal.
284 Returns 1 if bn1 is greater than bn2.
289 CCBigNumCompare(const CCBigNumRef bn1, const CCBigNumRef bn2)
/macosx-10.10/CommonCrypto-60061/lib/
H A DCommonBigNum.c209 CCBigNumCompare(const CCBigNumRef bn1, const CCBigNumRef bn2) argument
213 const ccz *t = (const ccz *)bn2;

Completed in 108 milliseconds