Uses of Class
java.security.cert.TrustAnchor
| Package | Description |
|---|---|
| java.security.cert |
This package provides all the classes and all the interfaces needed to generate, administer and verify
X.509 certificates.
|
| org.bouncycastle.jce.provider | |
| org.conscrypt |
-
Uses of TrustAnchor in java.security.cert
Methods in java.security.cert that return TrustAnchor Modifier and Type Method Description TrustAnchorPKIXCertPathValidatorResult. getTrustAnchor()Returns the trust anchor describing the certification authority (CA) that served as trust anchor for this certification path.Methods in java.security.cert that return types with arguments of type TrustAnchor Modifier and Type Method Description Set<TrustAnchor>PKIXParameters. getTrustAnchors()Returns a unmodifiable set of the trusted certificate authorities.Method parameters in java.security.cert with type arguments of type TrustAnchor Modifier and Type Method Description voidPKIXParameters. setTrustAnchors(Set<TrustAnchor> trustAnchors)Sets the set of trusted certificate authorities.Constructors in java.security.cert with parameters of type TrustAnchor Constructor Description PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey)Creates a newPKIXCertPathBuilderResultinstance with the specified validated certification path, the trust anchor of the certification path, the policy tree and the public key of the subject.PKIXCertPathValidatorResult(TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey)Creates a newPKIXCertPathValidatorResultwith the specified trust anchor, the valid policy tree and the subject public key.Constructor parameters in java.security.cert with type arguments of type TrustAnchor Constructor Description PKIXBuilderParameters(Set<TrustAnchor> trustAnchors, CertSelector targetConstraints)Creates a newPKIXBuilderParametersinstance with the specified set ofTrustAnchorand certificate constraints.PKIXParameters(Set<TrustAnchor> trustAnchors)Creates a newPKIXParametersinstance with the specified set of trusted certificate authorities. -
Uses of TrustAnchor in org.bouncycastle.jce.provider
Methods in org.bouncycastle.jce.provider that return TrustAnchor Modifier and Type Method Description protected static TrustAnchorCertPathValidatorUtilities. findTrustAnchor(X509Certificate cert, Set trustAnchors)Search the given Set of TrustAnchor's for one that is the issuer of the given X509 certificate.protected static TrustAnchorCertPathValidatorUtilities. findTrustAnchor(X509Certificate cert, Set trustAnchors, String sigProvider)Search the given Set of TrustAnchor's for one that is the issuer of the given X509 certificate. -
Uses of TrustAnchor in org.conscrypt
Methods in org.conscrypt that return TrustAnchor Modifier and Type Method Description TrustAnchorTrustedCertificateIndex. findByIssuerAndSignature(X509Certificate cert)TrustAnchorTrustedCertificateIndex. findBySubjectAndPublicKey(X509Certificate cert)TrustAnchorTrustedCertificateIndex. index(X509Certificate cert)Methods in org.conscrypt with parameters of type TrustAnchor Modifier and Type Method Description voidTrustedCertificateIndex. index(TrustAnchor anchor)Method parameters in org.conscrypt with type arguments of type TrustAnchor Modifier and Type Method Description voidTrustedCertificateIndex. reset(Set<TrustAnchor> anchors)Constructor parameters in org.conscrypt with type arguments of type TrustAnchor Constructor Description TrustedCertificateIndex(Set<TrustAnchor> anchors)