/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
PKIXCertPathValidator.java | 33 import sun.security.provider.certpath.PKIX.ValidatorParams; 38 * This class implements the PKIX validation algorithm for certification 62 * <code>X509Certificate</code>s using the PKIX validation algorithm, 67 * @param params the input PKIX parameter set 78 ValidatorParams valParams = PKIX.checkParams(cp, params);
|
BasicChecker.java | 54 * on a PKIX certificate, namely the signature, timestamp, and subject/issuer 104 if (PKIX.isDSAPublicKeyWithoutParams(prevPubKey)) { 253 if (PKIX.isDSAPublicKeyWithoutParams(cKey)) {
|
PKIX.java | 38 * Common utility methods and classes used by the PKIX CertPathValidator and 41 class PKIX { 45 private PKIX() { } 73 * PKIXParameters that are shared by the PKIX CertPathValidator
|
ReverseState.java | 43 import sun.security.provider.certpath.PKIX.BuilderParams; 50 * A specification of a reverse PKIX validation state 71 /* The PKIX constrained/excluded subtrees state variable */ 74 /* The PKIX explicit policy, policy mapping, and inhibit_any-policy 297 if (PKIX.isDSAPublicKeyWithoutParams(newKey)) {
|
ForwardState.java | 48 * A specification of a forward PKIX validation state 170 if (PKIX.isDSAPublicKeyWithoutParams(icert.getPublicKey())) {
|
SunCertPathBuilder.java | 45 import sun.security.provider.certpath.PKIX.BuilderParams; 55 * PKIXBuilderParameters object and has been validated according to the PKIX 111 * according to the PKIX specification. 130 buildParams = PKIX.checkBuilderParams(params); 250 if (PKIX.isDSAPublicKeyWithoutParams(pubKey)) { 327 * @param currentState the current PKIX validation state 343 * satisfy the PKIX certification path constraints. 599 /* Update the PKIX state */ 646 * @param currentState the current PKIX validation state 661 * satisfy the PKIX certification path constraints [all...] |
URICertStore.java | 374 throw new PKIX.CertStoreTypeException("LDAP", cse); 430 throw new PKIX.CertStoreTypeException("URI",
|
AlgorithmChecker.java | 262 if (PKIX.isDSAPublicKeyWithoutParams(currPubKey)) {
|
Builder.java | 35 import sun.security.provider.certpath.PKIX.BuilderParams;
|
ForwardBuilder.java | 45 import sun.security.provider.certpath.PKIX.BuilderParams; 103 * PKIX state (name constraints, policy constraints, etc). 140 * and requirements specified in the parameters and PKIX state. 184 * and requirements specified in the parameters and PKIX state. 391 * This inner class compares 2 PKIX certificates according to which 633 * This method executes the validation steps in the PKIX path 634 * validation algorithm <draft-ietf-pkix-new-part1-08.txt> which were 645 * matches the target subject, then steps in 6.1.4 of the PKIX [all...] |
ReverseBuilder.java | 54 import sun.security.provider.certpath.PKIX.BuilderParams; 100 * PKIX state (name constraints, policy constraints, etc). 133 * and requirements specified in the parameters and PKIX state. 193 * and requirements specified in the parameters and PKIX state. 267 * This inner class compares 2 PKIX certificates according to which 326 * This method executes any of the validation steps in the PKIX path validation
|
RevocationChecker.java | 45 import static sun.security.provider.certpath.PKIX.*; 439 if (PKIX.isDSAPublicKeyWithoutParams(pubKey)) { 477 // the issue is resolved in the PKIX WG. [all...] |
DistributionPointFetcher.java | 286 savedCSE = new PKIX.CertStoreTypeException(store.getType(),cse); 649 CertPathBuilder builder = CertPathBuilder.getInstance("PKIX"); [all...] |
/prebuilts/go/darwin-x86/src/crypto/x509/ |
verify.go | 126 // because other PKIX verification APIs have ended up needing many options.
|
x509.go | 18 "crypto/x509/pkix" 29 // pkixPublicKey reflects a PKIX public key structure. See SubjectPublicKeyInfo 32 Algo pkix.AlgorithmIdentifier 52 func marshalPublicKey(pub interface{}) (publicKeyBytes []byte, publicKeyAlgorithm pkix.AlgorithmIdentifier, err error) { 70 return nil, pkix.AlgorithmIdentifier{}, errors.New("x509: unsupported elliptic curve") 80 return nil, pkix.AlgorithmIdentifier{}, errors.New("x509: only RSA and ECDSA public keys supported") 86 // MarshalPKIXPublicKey serialises a public key to DER-encoded PKIX format. 89 var publicKeyAlgorithm pkix.AlgorithmIdentifier 96 pkix := pkixPublicKey{ 104 ret, _ := asn1.Marshal(pkix) [all...] |
x509_test.go | 16 "crypto/x509/pkix" 205 Subject: pkix.Name{ 218 Subject: pkix.Name{ 347 Subject: pkix.Name{ 351 ExtraNames: []pkix.AttributeTypeAndValue{ 389 ExtraExtensions: []pkix.Extension{ 506 // This OID is in the PKIX arc, but unknown. 515 Subject: pkix.Name{ 527 ExtraExtensions: []pkix.Extension{ 775 revokedCerts := []pkix.RevokedCertificate [all...] |
/prebuilts/go/linux-x86/src/crypto/x509/ |
verify.go | 126 // because other PKIX verification APIs have ended up needing many options.
|
x509.go | 18 "crypto/x509/pkix" 29 // pkixPublicKey reflects a PKIX public key structure. See SubjectPublicKeyInfo 32 Algo pkix.AlgorithmIdentifier 52 func marshalPublicKey(pub interface{}) (publicKeyBytes []byte, publicKeyAlgorithm pkix.AlgorithmIdentifier, err error) { 70 return nil, pkix.AlgorithmIdentifier{}, errors.New("x509: unsupported elliptic curve") 80 return nil, pkix.AlgorithmIdentifier{}, errors.New("x509: only RSA and ECDSA public keys supported") 86 // MarshalPKIXPublicKey serialises a public key to DER-encoded PKIX format. 89 var publicKeyAlgorithm pkix.AlgorithmIdentifier 96 pkix := pkixPublicKey{ 104 ret, _ := asn1.Marshal(pkix) [all...] |
x509_test.go | 16 "crypto/x509/pkix" 205 Subject: pkix.Name{ 218 Subject: pkix.Name{ 347 Subject: pkix.Name{ 351 ExtraNames: []pkix.AttributeTypeAndValue{ 389 ExtraExtensions: []pkix.Extension{ 506 // This OID is in the PKIX arc, but unknown. 515 Subject: pkix.Name{ 527 ExtraExtensions: []pkix.Extension{ 775 revokedCerts := []pkix.RevokedCertificate [all...] |
/libcore/ |
openjdk_java_files.mk | [all...] |
/frameworks/base/ |
compiled-classes-phone | [all...] |