HomeSort by relevance Sort by last modified time
    Searched refs:bigint (Results 1 - 25 of 39) sorted by null

1 2

  /external/syslinux/gpxe/src/crypto/axtls/
bigint.h 38 void bi_permanent(bigint *bi);
39 void bi_depermanent(bigint *bi);
40 void bi_free(BI_CTX *ctx, bigint *bi);
41 bigint *bi_copy(bigint *bi);
42 bigint *bi_clone(BI_CTX *ctx, const bigint *bi);
43 void bi_export(BI_CTX *ctx, bigint *bi, uint8_t *data, int size);
44 bigint *bi_import(BI_CTX *ctx, const uint8_t *data, int len);
45 bigint *int_to_bi(BI_CTX *ctx, comp i)
    [all...]
bigint_impl.h 54 struct _bigint* next; /**< The next bigint in the cache. */
55 short size; /**< The number of components in this bigint. */
56 short max_comps; /**< The heapsize allocated for this bigint */
61 typedef struct _bigint bigint; /**< An alias for _bigint */ typedef in typeref:struct:_bigint
69 bigint *active_list; /**< Bigints currently used. */
70 bigint *free_list; /**< Bigints not used. */
71 bigint *bi_radix; /**< The radix used. */
72 bigint *bi_mod[BIGINT_NUM_MODS]; /**< modulus */
75 bigint *bi_RR_mod_m[BIGINT_NUM_MODS]; /**< R^2 mod m */
76 bigint *bi_R_mod_m[BIGINT_NUM_MODS]; /**< R mod m *
    [all...]
bigint.c 21 * @brief The bigint implementation as used by the axTLS project.
23 * The bigint library is for RSA encryption/decryption as well as signing.
25 * cache. A bigint context may maintain state by being made "permanent".
44 * <http://cs.marlboro.edu/term/cs-fall02/algorithms/crypto/RSA/bigint>
56 #include "bigint.h"
59 static bigint *bi_int_multiply(BI_CTX *ctx, bigint *bi, comp i);
60 static bigint *bi_int_divide(BI_CTX *ctx, bigint *biR, comp denom);
61 static bigint __malloc *alloc(BI_CTX *ctx, int size)
    [all...]
crypto.h 30 #include "bigint.h"
142 bigint *m; /* modulus */
143 bigint *e; /* public exponent */
144 bigint *d; /* private exponent */
146 bigint *p; /* p as in m = pq */
147 bigint *q; /* q as in m = pq */
148 bigint *dP; /* d mod (p-1) */
149 bigint *dQ; /* d mod (q-1) */
150 bigint *qInv; /* q^-1 mod p */
153 bigint *sig_m; /* signature modulus *
    [all...]
rsa.c 20 * Implements the RSA public encryption algorithm. Uses the bigint library to
31 static bigint *bi_crt(const RSA_CTX *rsa, bigint *bi);
135 bigint *decrypted_bi, *dat_bi;
180 bigint *RSA_private(const RSA_CTX *c, bigint *bi_msg)
194 * This should really be in bigint.c (and was at one stage), but needs
197 static bigint *bi_crt(const RSA_CTX *rsa, bigint *bi)
200 bigint *m1, *m2, *h
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
PoloUtil.java 84 BigInteger bigint = new BigInteger(1, bytes); local
86 return String.format("%0" + formatLen + "x", bigint);
  /prebuilts/misc/common/swig/include/2.0.11/java/
typemaps.i 252 jobject bigint;
261 bigint = JCALL3(NewObject, jenv, clazz, mid, ba);
262 JCALL3(SetObjectArrayElement, jenv, $input, 0, bigint);
392 jobject bigint;
408 bigint = JCALL2(GetObjectArrayElement, jenv, $input, 0);
409 if (!bigint) {
413 clazz = JCALL1(GetObjectClass, jenv, bigint);
415 ba = (jbyteArray)JCALL2(CallObjectMethod, jenv, bigint, mid);
java.swg 346 jobject bigint;
355 bigint = JCALL3(NewObject, jenv, clazz, mid, ba);
356 $result = bigint;
365 jobject bigint;
374 bigint = JCALL3(NewObject, jenv, clazz, mid, ba);
375 $input = bigint;
587 jobject bigint;
596 bigint = JCALL3(NewObject, jenv, clazz, mid, ba);
597 $result = bigint;
    [all...]
  /external/pdfium/xfa/fxbarcode/pdf417/
BC_PDF417HighLevelEncoder.cpp 25 #include "third_party/bigint/BigIntegerLibrary.hh"
312 BigInteger bigint = stringToBigInteger(part.c_str());
314 int32_t c = (bigint % num900).toInt();
316 bigint = bigint / num900;
317 } while (!bigint.isZero());
  /prebuilts/go/darwin-x86/src/database/sql/
example_test.go 51 create temp table uid (id bigint); -- Create temp table for queries.
  /prebuilts/go/linux-x86/src/database/sql/
example_test.go 51 create temp table uid (id bigint); -- Create temp table for queries.
  /toolchain/binutils/binutils-2.25/ld/
ldfile.c 262 if (yylval.bigint.str)
263 free (yylval.bigint.str);
ldlex.l 149 yylval.bigint.str = NULL;
175 yylval.bigint.str = NULL;
188 yylval.bigint.str = NULL;
203 yylval.bigint.str = xstrdup (yytext + 2);
ldgram.y 66 } bigint;
102 %token <bigint> INT
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fractions.py 248 bigint = 1234567890123456789
249 self.assertEqual((bigint, 1), _components(F.from_float(bigint)))
test_decimal.py     [all...]
  /external/python/cpython2/Lib/test/
test_fractions.py 252 bigint = 1234567890123456789
253 self.assertEqual((bigint, 1), _components(F.from_float(bigint)))
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_fractions.py 252 bigint = 1234567890123456789
253 self.assertEqual((bigint, 1), _components(F.from_float(bigint)))
test_decimal.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_fractions.py 252 bigint = 1234567890123456789
253 self.assertEqual((bigint, 1), _components(F.from_float(bigint)))
test_decimal.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fractions.py 252 bigint = 1234567890123456789
253 self.assertEqual((bigint, 1), _components(F.from_float(bigint)))
test_decimal.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fractions.py 252 bigint = 1234567890123456789
253 self.assertEqual((bigint, 1), _components(F.from_float(bigint)))
test_decimal.py     [all...]

Completed in 742 milliseconds

1 2