Searched defs:encrypted_length (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/common/extensions/api/networking_private/
H A Dnetworking_private_crypto_openssl.cc159 int encrypted_length = local
165 if (encrypted_length < 0) {
170 rsa_output.get() + encrypted_length);
H A Dnetworking_private_crypto_nss.cc154 size_t encrypted_length = SECKEY_PublicKeyStrength(public_key.get()); local
157 if (encrypted_length < data.size() + 11) {
162 scoped_ptr<unsigned char[]> rsa_output(new unsigned char[encrypted_length]);
174 rsa_output.get() + encrypted_length);
195 size_t encrypted_length = SECKEY_SignatureLen(private_key->public_key()); local
196 scoped_ptr<unsigned char[]> rsa_output(new unsigned char[encrypted_length]);
202 encrypted_length,

Completed in 575 milliseconds