HomeSort by relevance Sort by last modified time
    Searched defs:private_key (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/net/base/
openssl_private_key_store_android.cc 30 unsigned char* private_key = NULL; local
36 private_len = i2d_PKCS8_PRIV_KEY_INFO(pkcs8.get(), &private_key);
42 static_cast<const uint8*>(private_key), private_len);
47 OPENSSL_free(private_key);
keygen_handler_mac.cc 100 SecKeyRef private_key,
108 SecKeyRef private_key = NULL; local
130 &public_key, &private_key);
172 err = SignData(encoded, private_key, &signature);
204 if (private_key)
205 SecKeychainItemDelete(reinterpret_cast<SecKeychainItemRef>(private_key));
216 if (private_key)
217 CFRelease(private_key);
308 SecKeyRef private_key,
311 OSStatus err = CreateSignatureContext(private_key,
    [all...]
  /external/chromium_org/remoting/base/
rsa_key_pair.h 41 crypto::RSAPrivateKey* private_key() { return key_.get(); } function in class:remoting::RsaKeyPair
  /external/chromium_org/net/ssl/
openssl_client_key_store.h 48 // |private_key| is an OpenSSL EVP_PKEY that corresponds to the
51 // This function does not take ownership of the private_key, but may
54 EVP_PKEY* private_key);
59 // |*private_key| will be reset to its matching private key on success.
63 ScopedEVP_PKEY* private_key);
74 // |pub_key| and |private_key| can point to the same object.
77 void AddKeyPair(EVP_PKEY* pub_key, EVP_PKEY* private_key);
90 EVP_PKEY* private_key; member in class:net::OpenSSLClientKeyStore::KeyPair
server_bound_cert_store.h 36 const std::string& private_key,
50 const std::string& private_key() const { return private_key_; } function in class:net::ServerBoundCertStore::ServerBoundCert
92 const std::string& private_key,
default_server_bound_cert_store_unittest.cc 167 std::string private_key, cert; local
172 &private_key,
175 EXPECT_TRUE(private_key.empty());
185 &private_key,
189 EXPECT_EQ("i", private_key);
198 std::string private_key, cert; local
217 &private_key,
221 EXPECT_EQ("c", private_key);
236 std::string private_key; local
242 &private_key,
323 std::string private_key, cert; local
390 std::string private_key; local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
mailbox_manager.h 58 std::string private_key() { function in class:gpu::gles2::MailboxManager
  /external/chromium_org/net/quic/crypto/
curve25519_key_exchange.cc 22 const StringPiece& private_key) {
33 if (private_key.size() != crypto::curve25519::kScalarBytes) {
38 memcpy(ka->private_key_, private_key.data(),
46 uint8 private_key[crypto::curve25519::kScalarBytes]; local
47 rand->RandBytes(private_key, sizeof(private_key));
49 // This makes |private_key| a valid scalar, as specified on
51 private_key[0] &= 248;
52 private_key[31] &= 127;
53 private_key[31] |= 64
    [all...]
crypto_server_config_protobuf.h 35 std::string private_key() const { function in class:net::QuicServerConfigProtobuf::PrivateKey
p256_key_exchange_nss.cc 116 vector<uint8> private_key; local
119 &private_key)) {
134 uint16 private_key_size = private_key.size();
145 memcpy(resultp, &private_key[0], private_key.size());
146 resultp += private_key.size();