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

  /external/chromium_org/third_party/webrtc/base/
sslidentity.cc 41 bool SSLIdentity::PemToDer(const std::string& pem_type,
46 size_t header = pem_string.find("-----BEGIN " + pem_type + "-----");
54 size_t trailer = pem_string.find("-----END " + pem_type + "-----");
66 std::string SSLIdentity::DerToPem(const std::string& pem_type,
71 result << "-----BEGIN " << pem_type << "-----\n"; local
86 result << "-----END " << pem_type << "-----\n"; local
sslidentity.h 159 static bool PemToDer(const std::string& pem_type,
162 static std::string DerToPem(const std::string& pem_type,
  /external/chromium_org/chrome/common/extensions/api/networking_private/
networking_private_crypto_nss.cc 28 // Parses |pem_data| for a PEM block of |pem_type|.
29 // Returns true if a |pem_type| block is found, storing the decoded result in
32 const std::string& pem_type,
35 headers.push_back(pem_type);
networking_private_crypto_openssl.cc 23 // Parses |pem_data| for a PEM block of |pem_type|.
24 // Returns true if a |pem_type| block is found, storing the decoded result in
27 const std::string& pem_type,
30 headers.push_back(pem_type);

Completed in 2679 milliseconds