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