/external/rust/crates/quiche/deps/boringssl/src/crypto/x509v3/ |
D | v3_ncons.c | 81 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc); 90 ASN1_ITEM_ref(NAME_CONSTRAINTS), 104 ASN1_SEQUENCE(NAME_CONSTRAINTS) = { 105 ASN1_IMP_SEQUENCE_OF_OPT(NAME_CONSTRAINTS, permittedSubtrees, 107 ASN1_IMP_SEQUENCE_OF_OPT(NAME_CONSTRAINTS, excludedSubtrees, 109 } ASN1_SEQUENCE_END(NAME_CONSTRAINTS) 113 IMPLEMENT_ASN1_ALLOC_FUNCTIONS(NAME_CONSTRAINTS) 121 NAME_CONSTRAINTS *ncons = NULL; 165 NAME_CONSTRAINTS *ncons = a; in i2r_NAME_CONSTRAINTS() 231 int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc) in NAME_CONSTRAINTS_check() [all …]
|
/external/boringssl/src/crypto/x509v3/ |
D | v3_ncons.c | 81 static int nc_match(GENERAL_NAME *gen, NAME_CONSTRAINTS *nc); 90 ASN1_ITEM_ref(NAME_CONSTRAINTS), 104 ASN1_SEQUENCE(NAME_CONSTRAINTS) = { 105 ASN1_IMP_SEQUENCE_OF_OPT(NAME_CONSTRAINTS, permittedSubtrees, 107 ASN1_IMP_SEQUENCE_OF_OPT(NAME_CONSTRAINTS, excludedSubtrees, 109 } ASN1_SEQUENCE_END(NAME_CONSTRAINTS) 113 IMPLEMENT_ASN1_ALLOC_FUNCTIONS(NAME_CONSTRAINTS) 121 NAME_CONSTRAINTS *ncons = NULL; 165 NAME_CONSTRAINTS *ncons = a; in i2r_NAME_CONSTRAINTS() 231 int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc) in NAME_CONSTRAINTS_check() [all …]
|
/external/python/cryptography/src/cryptography/x509/ |
D | oid.py | 18 NAME_CONSTRAINTS = ObjectIdentifier("2.5.29.30") variable in ExtensionOID 202 ExtensionOID.NAME_CONSTRAINTS: "nameConstraints",
|
D | __init__.py | 55 OID_NAME_CONSTRAINTS = ExtensionOID.NAME_CONSTRAINTS
|
D | extensions.py | 1049 oid = ExtensionOID.NAME_CONSTRAINTS
|
/external/openscreen/cast/common/certificate/ |
D | cast_cert_validator_internal.cc | 34 void operator()(NAME_CONSTRAINTS* nc) { NAME_CONSTRAINTS_free(nc); } in operator ()() 37 std::unique_ptr<NAME_CONSTRAINTS, FreeNameConstraints>; 201 NameConstraintsPtr nc{reinterpret_cast<NAME_CONSTRAINTS*>( in VerifyCertificateChain()
|
/external/boringssl/src/include/openssl/ |
D | x509v3.h | 541 OPENSSL_EXPORT int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc); 553 DECLARE_ASN1_ITEM(NAME_CONSTRAINTS) 554 DECLARE_ASN1_ALLOC_FUNCTIONS(NAME_CONSTRAINTS)
|
D | base.h | 354 typedef struct NAME_CONSTRAINTS_st NAME_CONSTRAINTS; typedef
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/ |
D | PKIXCertPathValidatorSpi.java | 445 criticalExtensions.remove(RFC3280CertPathUtilities.NAME_CONSTRAINTS); in engineValidate() 509 criticalExtensions.remove(RFC3280CertPathUtilities.NAME_CONSTRAINTS); in engineValidate()
|
D | X509CertificateObject.java | 527 || oidId.equals(RFC3280CertPathUtilities.NAME_CONSTRAINTS)) in hasUnsupportedCriticalExtension()
|
D | RFC3280CertPathUtilities.java | 410 public static final String NAME_CONSTRAINTS = Extension.nameConstraints.getId(); field in RFC3280CertPathUtilities 1586 RFC3280CertPathUtilities.NAME_CONSTRAINTS)); in prepareNextCertG()
|
D | CertPathValidatorUtilities.java | 95 protected static final String NAME_CONSTRAINTS = Extension.nameConstraints.getId(); field in CertPathValidatorUtilities
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | PKIXCertPathValidatorSpi.java | 443 criticalExtensions.remove(RFC3280CertPathUtilities.NAME_CONSTRAINTS); in engineValidate() 507 criticalExtensions.remove(RFC3280CertPathUtilities.NAME_CONSTRAINTS); in engineValidate()
|
D | X509CertificateObject.java | 524 || oidId.equals(RFC3280CertPathUtilities.NAME_CONSTRAINTS)) in hasUnsupportedCriticalExtension()
|
D | RFC3280CertPathUtilities.java | 409 public static final String NAME_CONSTRAINTS = Extension.nameConstraints.getId(); field in RFC3280CertPathUtilities 1585 RFC3280CertPathUtilities.NAME_CONSTRAINTS)); in prepareNextCertG()
|
D | CertPathValidatorUtilities.java | 94 protected static final String NAME_CONSTRAINTS = Extension.nameConstraints.getId(); field in CertPathValidatorUtilities
|
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/ |
D | x509v3.h | 586 OPENSSL_EXPORT int NAME_CONSTRAINTS_check(X509 *x, NAME_CONSTRAINTS *nc); 598 DECLARE_ASN1_ITEM(NAME_CONSTRAINTS) 599 DECLARE_ASN1_ALLOC_FUNCTIONS(NAME_CONSTRAINTS)
|
D | base.h | 347 typedef struct NAME_CONSTRAINTS_st NAME_CONSTRAINTS; typedef
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jce/provider/ |
D | PKIXCertPathValidatorSpi.java | 445 criticalExtensions.remove(RFC3280CertPathUtilities.NAME_CONSTRAINTS); in engineValidate() 509 criticalExtensions.remove(RFC3280CertPathUtilities.NAME_CONSTRAINTS); in engineValidate()
|
D | X509CertificateObject.java | 526 || oidId.equals(RFC3280CertPathUtilities.NAME_CONSTRAINTS)) in hasUnsupportedCriticalExtension()
|
D | RFC3280CertPathUtilities.java | 410 public static final String NAME_CONSTRAINTS = Extension.nameConstraints.getId(); field in RFC3280CertPathUtilities 1586 RFC3280CertPathUtilities.NAME_CONSTRAINTS)); in prepareNextCertG()
|
D | CertPathValidatorUtilities.java | 95 protected static final String NAME_CONSTRAINTS = Extension.nameConstraints.getId(); field in CertPathValidatorUtilities
|
/external/python/cryptography/tests/x509/ |
D | test_x509_ext.py | 3352 ExtensionOID.NAME_CONSTRAINTS 3374 ExtensionOID.NAME_CONSTRAINTS 3392 ExtensionOID.NAME_CONSTRAINTS 3411 ExtensionOID.NAME_CONSTRAINTS 3430 ExtensionOID.NAME_CONSTRAINTS 3452 ExtensionOID.NAME_CONSTRAINTS 3472 ExtensionOID.NAME_CONSTRAINTS
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | encode_asn1.py | 627 ExtensionOID.NAME_CONSTRAINTS: _encode_name_constraints,
|
D | decode_asn1.py | 818 ExtensionOID.NAME_CONSTRAINTS: _decode_name_constraints,
|