/ohos5.0/docs/zh-cn/application-dev/security/CryptoArchitectureKit/ |
H A D | crypto-convert-string-data-to-asym-key-pair-ndk.md | 1 # 指定PEM格式字符串数据转换非对称密钥对(C/C++) 10 > - 公钥需满足:X.509规范、PKCS\#1规范、PEM编码格式。 12 > - 私钥需满足:PKCS\#8规范、PKCS\#1规范、PEM编码格式。 22 ## 指定PEM格式字符串数据转换RSA密钥对
|
H A D | crypto-convert-string-data-to-asym-key-pair.md | 1 # 指定PEM格式字符串数据转换非对称密钥对(ArkTS) 11 > - 公钥需满足:X.509规范、PKCS\#1规范、PEM编码格式。 13 > - 私钥需满足:PKCS\#8规范、PKCS\#1规范、PEM编码格式。 18 ## 指定PEM格式字符串数据转换RSA密钥对
|
H A D | Readme-CN.md | 22 - [指定PEM格式字符串数据转换非对称密钥对(ArkTS)](crypto-convert-string-data-to-asym-key-pair.md) 23 - [指定PEM格式字符串数据转换非对称密钥对(C/C++)](crypto-convert-string-data-to-asym-key-pair-ndk.md)
|
/ohos5.0/docs/en/application-dev/security/CryptoArchitectureKit/ |
H A D | crypto-convert-string-data-to-asym-key-pair.md | 1 # Converting a PEM String into an Asymmetric Key Pair (ArkTS) 4 This topic walks you through on how to convert a string in PEM format into an RSA asymmetric key pa… 11 > - The public key must comply with X.509 specifications, PKCS\#1 specifications, and PEM encoding … 13 > - The private key must comply with the PKCS\#8 or PKCS\#1 specifications and the PEM encoding for… 18 ## Converting a String in PEM Format into an RSA Key Pair 29 - Example: Convert a string in PEM format into an RSA key pair (using promise-based APIs). 68 - Example: Convert a string in PEM format into an RSA key pair (using the synchronous API [convertP…
|
H A D | crypto-convert-string-data-to-asym-key-pair-ndk.md | 1 # Converting a PEM String into an Asymmetric Key Pair (C/C++) 4 This topic walks you through on how to convert a string in PEM format into an RSA asymmetric key pa… 10 > - The public key must comply with X.509 specifications, PKCS\#1 specifications, and PEM encoding … 12 > - The private key must comply with the PKCS\#8 or PKCS\#1 specifications and the PEM encoding for… 22 ## Converting a String in PEM Format into an RSA Key Pair
|
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/tls/src/context/ |
H A D | tls_napi_context.cpp | 27 localCert_.encodingFormat = PEM; in TLSNapiContext() 28 remoteCert_.encodingFormat = PEM; in TLSNapiContext()
|
/ohos5.0/foundation/communication/netstack/frameworks/native/tls_socket/src/ |
H A D | tls_certificate.cpp | 43 rawData_.encodingFormat = PEM; in TLSCertificate() 49 case PEM: in TLSCertificate() 66 rawData_.encodingFormat = PEM; in TLSCertificate()
|
/ohos5.0/docs/zh-cn/application-dev/security/DeviceCertificateKit/ |
H A D | create-parse-verify-cert-object.md | 47 // 证书格式,仅支持PEM和DER。在此示例中,证书为PEM格式
|
H A D | create-verify-cerchainvalidator-object.md | 98 // 证书格式。仅支持 PEM 和 DER。在此示例中,证书为 PEM 格式
|
H A D | certificate-framework-overview.md | 35 目前仅支持DER与PEM格式的证书。
|
H A D | create-parse-verify-crl-object.md | 81 // CRL格式,仅支持PEM和DER格式。在这个例子中,CRL用的是PEM格式
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-network-kit/ |
H A D | _net_stack___certificates.md | 20 | [content](netstack.md#content) | 证书的PEM内容。 |
|
H A D | netstack.md | 82 | [NetStack_Certificates::content](#content) | 证书的PEM内容。 | 197 | NetStack_CERT_TYPE_PEM | PEM证书类型。 | 644 证书的PEM内容。
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ssl/ |
H A D | filetype.rs | 21 pub(crate) const PEM: SslFiletype = SslFiletype(X509_FILETYPE_PEM);
|
/ohos5.0/docs/en/application-dev/reference/apis-network-kit/ |
H A D | _net_stack___certificates.md | 20 | [content](netstack.md#content) | PEM content of the certificate.|
|
/ohos5.0/foundation/communication/netstack/frameworks/native/tls_socket/include/ |
H A D | tls.h | 38 enum EncodingFormat { DER, PEM }; enumerator
|
H A D | tls_certificate.h | 33 … TLSCertificate(const std::string &data, EncodingFormat format = PEM, CertType certType = CA_CERT);
|
H A D | tls_key.h | 44 EncodingFormat format = PEM, KeyType type = PRIVATE_KEY);
|
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ |
H A D | adapter.rs | 551 pub const PEM: Self = Self(SslFiletype::PEM); const 763 .certificate_file("cert.pem", TlsFileType::PEM) in ut_set_certificate_file()
|
/ohos5.0/docs/en/application-dev/security/DeviceCertificateKit/ |
H A D | create-parse-verify-cert-object.md | 49 …// Certificate format. Only PEM and DER are supported. In this example, the certificate is in PEM …
|
H A D | create-verify-cerchainvalidator-object.md | 98 …// Certificate format. Only PEM and DER are supported. In this example, the certificate is in PEM …
|
H A D | create-parse-verify-crl-object.md | 81 …// CRL format. Only the PEM and DER formats are supported. In this example, the CRL is in PEM form…
|
/ohos5.0/foundation/communication/netstack/interfaces/kits/js/ |
H A D | @ohos.net.http.d.ts | 470 PEM = 'PEM',
|
/ohos5.0/docs/zh-cn/application-dev/network/ |
H A D | http-request.md | 79 certType: http.CertType.PEM, // 可选,默认使用PEM,自API 11开始支持该属性
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-crypto-architecture-kit/ |
H A D | _crypto_asym_key_api.md | 112 | CRYPTO_PEM | PEM格式密钥类型。 |
|