Searched refs:pem (Results 1 – 10 of 10) sorted by relevance
12 ALL : $DEFAULT_SYSTEM_DEV_CERTIFICATE/platform.x509.pem15 ALL : $DEFAULT_SYSTEM_DEV_CERTIFICATE/media.x509.pem18 ALL : $DEFAULT_SYSTEM_DEV_CERTIFICATE/shared.x509.pem22 ENG : $DEFAULT_SYSTEM_DEV_CERTIFICATE/testkey.x509.pem23 USER : $DEFAULT_SYSTEM_DEV_CERTIFICATE/testkey.x509.pem24 USERDEBUG : $DEFAULT_SYSTEM_DEV_CERTIFICATE/testkey.x509.pem
70 mac_permissions.xml to public keys found in pem files. This script takes79 pem files. The configuration file is processed via m4.82 with specific path to a pem file. Typically TARGET_BUILD_VARIANT is either92 organization and may need to extract the pem file for the insertkeys/keys.conf tools.93 Extraction of the public key in the pem format is possible via openssl. First you need95 openssl pkcs7 -inform DER -in CERT.RSA -out CERT.pem -outform PEM -print_certs97 After extracting the pem, you can rename it, and configure keys.conf and98 mac_permissions.xml to pick up the change. You MUST open the generated pem file in a text102 NOTE: The pem files are base64 encoded and PackageManagerService, mac_permissions.xml
132 static byte[] pemToDer(String pem) throws Exception { in pemToDer() argument133 pem = pem.replaceAll("^-.*", ""); in pemToDer()134 String base64_der = pem.replaceAll("-.*$", ""); in pemToDer()179 static PrivateKey loadPEMPrivateKey(byte[] pem) throws Exception { in loadPEMPrivateKey() argument180 byte[] der = pemToDer(new String(pem)); in loadPEMPrivateKey()198 static PublicKey loadPEMPublicKey(byte[] pem) throws Exception { in loadPEMPublicKey() argument199 byte[] der = pemToDer(new String(pem)); in loadPEMPublicKey()
701 $(eval LOCAL_MODULE := ue_$(1).pem) \704 $(eval LOCAL_SRC_FILES := $(1).pem) \707 $(eval LOCAL_MODULE_STEM := $(1).pem) \711 $(eval LOCAL_MODULE := ue_$(1).pub.pem) \716 $(eval LOCAL_MODULE_STEM := $(1).pub.pem) \718 $(eval $(LOCAL_BUILT_MODULE) : $(LOCAL_PATH)/$(1).pem ; \794 ue_unittest_key.pem \795 ue_unittest_key.pub.pem \796 ue_unittest_key2.pem \797 ue_unittest_key2.pub.pem \[all …]
2 /*.pub.pem
433 'unittest_key.pem',434 'unittest_key2.pem',
2 manually synchronized with https://pki.google.com/roots.pem. See
841 std::string pem = CreatePEMCertificate(key.certified_key_credential()); in CreatePEMCertificateChain() local843 pem += "\n"; in CreatePEMCertificateChain()844 pem += CreatePEMCertificate(key.intermediate_ca_cert()); in CreatePEMCertificateChain()847 pem += "\n"; in CreatePEMCertificateChain()848 pem += CreatePEMCertificate(key.additional_intermediate_ca_cert(i)); in CreatePEMCertificateChain()850 return pem; in CreatePEMCertificateChain()858 std::string pem = kBeginCertificate; in CreatePEMCertificate() local859 pem += brillo::data_encoding::Base64EncodeWrapLines(certificate); in CreatePEMCertificate()860 pem += kEndCertificate; in CreatePEMCertificate()861 return pem; in CreatePEMCertificate()
98 std::string pem = kBeginCertificate; in GetFakeCertificateChain() local99 pem += brillo::data_encoding::Base64EncodeWrapLines("fake_cert"); in GetFakeCertificateChain()100 pem += kEndCertificate + "\n" + kBeginCertificate; in GetFakeCertificateChain()101 pem += brillo::data_encoding::Base64EncodeWrapLines("fake_ca_cert"); in GetFakeCertificateChain()102 pem += kEndCertificate + "\n" + kBeginCertificate; in GetFakeCertificateChain()103 pem += brillo::data_encoding::Base64EncodeWrapLines("fake_ca_cert2"); in GetFakeCertificateChain()104 pem += kEndCertificate; in GetFakeCertificateChain()105 return pem; in GetFakeCertificateChain()
38 mac_permissions.xml to public keys found in pem files. This