java.lang.Object
java.security.cert.X509CertSelector
- All Implemented Interfaces:
- Cloneable, CertSelector
- See Also:
- Source Code,
setSerialNumber
, CertStore.getCertificates
, setKeyUsage
, setIssuer
, match
, getBasicConstraints
,
X509Certificate
public void addPathToName(int type,
byte[] name)
throws IOException
- See Also:
-
addSubjectAlternativeName(int type, byte [] name)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void addPathToName(int type,
String name)
throws IOException
- See Also:
- addPathToName(int, byte[])
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void addSubjectAlternativeName(int type,
byte[] name)
throws IOException
- See Also:
-
setMatchAllSubjectAltNames
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void addSubjectAlternativeName(int type,
String name)
throws IOException
- See Also:
- addSubjectAlternativeName(int, byte[]),
setMatchAllSubjectAltNames
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Object clone()
- See Also:
Cloneable
, CertSelector
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public byte[] getAuthorityKeyIdentifier()
- See Also:
setAuthorityKeyIdentifier(byte[])
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public int getBasicConstraints()
- See Also:
setBasicConstraints(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public X509Certificate getCertificate()
- See Also:
setCertificate(java.security.cert.X509Certificate)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Date getCertificateValid()
- See Also:
setCertificateValid(java.util.Date)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Set<String> getExtendedKeyUsage()
- See Also:
setExtendedKeyUsage(java.util.Set)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public X500Principal getIssuer()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public byte[] getIssuerAsBytes()
throws IOException
- See Also:
-
setIssuer(byte [] issuerDN)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public String getIssuerAsString()
- See Also:
- getIssuerAsBytes(), getIssuer()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public boolean[] getKeyUsage()
- See Also:
setKeyUsage(boolean[])
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public boolean getMatchAllSubjectAltNames()
- See Also:
setMatchAllSubjectAltNames(boolean)
, addSubjectAlternativeName
, setSubjectAlternativeNames
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public byte[] getNameConstraints()
- See Also:
setNameConstraints(byte[])
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Collection<List<?>> getPathToNames()
- See Also:
setPathToNames(java.util.Collection>)
, addPathToName(int type, byte [] name)
, addPathToName(int type, String name)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Set<String> getPolicy()
- See Also:
setPolicy(java.util.Set)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Date getPrivateKeyValid()
- See Also:
setPrivateKeyValid(java.util.Date)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public BigInteger getSerialNumber()
- See Also:
setSerialNumber(java.math.BigInteger)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public X500Principal getSubject()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public Collection<List<?>> getSubjectAlternativeNames()
- See Also:
setSubjectAlternativeNames(java.util.Collection>)
, addSubjectAlternativeName(int type, byte [] name)
, addSubjectAlternativeName(int type, String name)
, getMatchAllSubjectAltNames
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public byte[] getSubjectAsBytes()
throws IOException
- See Also:
-
setSubject(byte [] subjectDN)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public String getSubjectAsString()
- See Also:
- getSubjectAsBytes(), getSubject()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public byte[] getSubjectKeyIdentifier()
- See Also:
setSubjectKeyIdentifier(byte[])
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public PublicKey getSubjectPublicKey()
- See Also:
setSubjectPublicKey(java.security.PublicKey)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public String getSubjectPublicKeyAlgID()
- See Also:
setSubjectPublicKeyAlgID(java.lang.String)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public boolean match(Certificate cert)
- See Also:
- CertSelector
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setAuthorityKeyIdentifier(byte[] authorityKeyID)
- See Also:
getAuthorityKeyIdentifier()
, setSubjectKeyIdentifier(byte[] subjectKeyID)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setBasicConstraints(int minMaxPathLen)
- See Also:
getBasicConstraints()
, IllegalArgumentException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setCertificate(X509Certificate cert)
- See Also:
getCertificate()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setCertificateValid(Date certValid)
- See Also:
getCertificateValid()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setExtendedKeyUsage(Set<String> keyPurposeSet)
throws IOException
- See Also:
getExtendedKeyUsage()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setIssuer(byte[] issuerDN)
throws IOException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setIssuer(String issuerDN)
throws IOException
- See Also:
- setIssuer(byte[]), setIssuer(X500Principal)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setIssuer(X500Principal issuer)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setKeyUsage(boolean[] keyUsage)
- See Also:
getKeyUsage()
, X509Certificate.getKeyUsage()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setMatchAllSubjectAltNames(boolean matchAllNames)
- See Also:
getMatchAllSubjectAltNames()
, addSubjectAlternativeName
, setSubjectAlternativeNames
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setNameConstraints(byte[] bytes)
throws IOException
- See Also:
getNameConstraints()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setPathToNames(Collection<List<?>> names)
throws IOException
- See Also:
getPathToNames()
, addPathToName(int, String)
, addPathToName(int type, byte [] name)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setPolicy(Set<String> certPolicySet)
throws IOException
- See Also:
getPolicy()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setPrivateKeyValid(Date privateKeyValid)
- See Also:
getPrivateKeyValid()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setSerialNumber(BigInteger serial)
- See Also:
getSerialNumber()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setSubject(byte[] subjectDN)
throws IOException
- See Also:
-
setIssuer(byte [] issuerDN)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setSubject(String subjectDN)
throws IOException
- See Also:
- setSubject(byte[]), setSubject(X500Principal)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setSubject(X500Principal subject)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setSubjectAlternativeNames(Collection<List<?>> names)
throws IOException
- See Also:
getSubjectAlternativeNames()
, addSubjectAlternativeName(int, String)
, addSubjectAlternativeName(int type, byte [] name)
, setMatchAllSubjectAltNames
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setSubjectKeyIdentifier(byte[] subjectKeyID)
- See Also:
getSubjectKeyIdentifier()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setSubjectPublicKey(byte[] key)
throws IOException
- See Also:
getSubjectPublicKey()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setSubjectPublicKey(PublicKey key)
- See Also:
getSubjectPublicKey()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public void setSubjectPublicKeyAlgID(String oid)
throws IOException
- See Also:
getSubjectPublicKeyAlgID()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public String toString()
- See Also:
- Object
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public X509CertSelector()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples