Searched refs:ReadIntegerWithExpectedSize (Results 1 – 2 of 2) sorted by relevance
/external/libchrome/crypto/ |
D | rsa_private_key.cc | 153 if (!ReadIntegerWithExpectedSize(&src, end, 4, &public_exponent_) || in Import() 154 !ReadIntegerWithExpectedSize(&src, end, mod_size, &private_exponent_) || in Import() 155 !ReadIntegerWithExpectedSize(&src, end, primes_size, &prime1_) || in Import() 156 !ReadIntegerWithExpectedSize(&src, end, primes_size, &prime2_) || in Import() 157 !ReadIntegerWithExpectedSize(&src, end, primes_size, &exponent1_) || in Import() 158 !ReadIntegerWithExpectedSize(&src, end, primes_size, &exponent2_) || in Import() 159 !ReadIntegerWithExpectedSize(&src, end, primes_size, &coefficient_)) in Import() 221 bool PrivateKeyInfoCodec::ReadIntegerWithExpectedSize( in ReadIntegerWithExpectedSize() function in crypto::PrivateKeyInfoCodec
|
D | rsa_private_key.h | 98 bool ReadIntegerWithExpectedSize(uint8_t** pos,
|