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

  /external/chromium_org/net/cert/
ct_serialization.cc 51 bool ReadUint(size_t length, base::StringPiece* in, T* out) {
71 if (!ReadUint(prefix_length, in, &length))
259 if (!ReadUint(kHashAlgorithmLength, input, &hash_algo) ||
260 !ReadUint(kSigAlgorithmLength, input, &sig_algo) ||
343 if (!ReadUint(kVersionLength, input, &version))
355 !ReadUint(kTimestampLength, input, &timestamp) ||
  /external/chromium_org/content/child/webcrypto/nss/
rsa_key_nss.cc 147 bool ReadUint(SECKEYPrivateKey* key,
179 if (!ReadUint(key, CKA_MODULUS, &out->modulus))
181 if (!ReadUint(key, CKA_PUBLIC_EXPONENT, &out->public_exponent))
183 if (!ReadUint(key, CKA_PRIVATE_EXPONENT, &out->private_exponent))
185 if (!ReadUint(key, CKA_PRIME_1, &out->prime1))
187 if (!ReadUint(key, CKA_PRIME_2, &out->prime2))
189 if (!ReadUint(key, CKA_EXPONENT_1, &out->exponent1))
191 if (!ReadUint(key, CKA_EXPONENT_2, &out->exponent2))
193 if (!ReadUint(key, CKA_COEFFICIENT, &out->coefficient))

Completed in 360 milliseconds