HomeSort by relevance Sort by last modified time
    Searched refs:BN_bn2le_padded (Results 1 - 4 of 4) sorted by null

  /external/boringssl/src/crypto/bn/
convert.c 169 int BN_bn2le_padded(uint8_t *out, size_t len, const BIGNUM *in) {
bn_test.cc 798 // Test edge case at 0. Fill |out| with garbage to ensure |BN_bn2le_padded|
803 if (!BN_bn2le_padded(out, sizeof(out), x.get()) ||
805 fprintf(stderr, "BN_bn2le_padded failed to encode 0.\n");
822 // Fill |out| with garbage to ensure |BN_bn2le_padded| wrote the result.
824 if (!BN_bn2le_padded(out, sizeof(out), x.get())) {
825 fprintf(stderr, "BN_bn2le_padded failed to encode random value.\n");
841 fprintf(stderr, "BN_bn2le_padded failed to encode value correctly.\n");
    [all...]
  /external/boringssl/src/include/openssl/
bn.h 249 /* BN_bn2le_padded serialises the absolute value of |in| to |out| as a
253 OPENSSL_EXPORT int BN_bn2le_padded(uint8_t *out, size_t len, const BIGNUM *in);
    [all...]
  /libcore/luni/src/main/native/
java_math_NativeBN.cpp 342 if (!BN_bn2le_padded(reinterpret_cast<uint8_t*>(uints), intLen * sizeof(int), a)) {

Completed in 518 milliseconds