Searched refs:ReadIntegerWithExpectedSize (Results 1 – 2 of 2) sorted by relevance
/external/chromium/base/crypto/ |
D | rsa_private_key.cc | 252 if (!ReadIntegerWithExpectedSize(&src, end, 4, &public_exponent_) || in Import() 253 !ReadIntegerWithExpectedSize(&src, end, mod_size, &private_exponent_) || in Import() 254 !ReadIntegerWithExpectedSize(&src, end, primes_size, &prime1_) || in Import() 255 !ReadIntegerWithExpectedSize(&src, end, primes_size, &prime2_) || in Import() 256 !ReadIntegerWithExpectedSize(&src, end, primes_size, &exponent1_) || in Import() 257 !ReadIntegerWithExpectedSize(&src, end, primes_size, &exponent2_) || in Import() 258 !ReadIntegerWithExpectedSize(&src, end, primes_size, &coefficient_)) in Import() 345 bool PrivateKeyInfoCodec::ReadIntegerWithExpectedSize(uint8** pos, in ReadIntegerWithExpectedSize() function in base::PrivateKeyInfoCodec
|
D | rsa_private_key.h | 90 bool ReadIntegerWithExpectedSize(uint8** pos,
|