⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 x509crl.html

📁 API資料大全
💻 HTML
📖 第 1 页 / 共 3 页
字号:
 Name ::= CHOICE { RDNSequence } RDNSequence ::= SEQUENCE OF RelativeDistinguishedName RelativeDistinguishedName ::=     SET OF AttributeValueAssertion AttributeValueAssertion ::= SEQUENCE {                               AttributeType,                               AttributeValue } AttributeType ::= OBJECT IDENTIFIER AttributeValue ::= ANY </pre> The <code>Name</code> describes a hierarchical name composed of attributes, such as country name, and corresponding values, such as US. The type of the <code>AttributeValue</code> component is determined by the <code>AttributeType</code>; in general it will be a  <code>directoryString</code>. A <code>directoryString</code> is usually  one of <code>PrintableString</code>, <code>TeletexString</code> or <code>UniversalString</code>.<DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>a Principal whose name is the issuer distinguished name.</DL></DD></DL><HR><A NAME="getThisUpdate()"><!-- --></A><H3>getThisUpdate</H3><PRE>public abstract <A HREF="../../../java/util/Date.html">Date</A> <B>getThisUpdate</B>()</PRE><DL><DD>Gets the <code>thisUpdate</code> date from the CRL. The ASN.1 definition for this is: <pre> thisUpdate   ChoiceOfTime ChoiceOfTime ::= CHOICE {     utcTime        UTCTime,     generalTime    GeneralizedTime } </pre><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>the <code>thisUpdate</code> date from the CRL.</DL></DD></DL><HR><A NAME="getNextUpdate()"><!-- --></A><H3>getNextUpdate</H3><PRE>public abstract <A HREF="../../../java/util/Date.html">Date</A> <B>getNextUpdate</B>()</PRE><DL><DD>Gets the <code>nextUpdate</code> date from the CRL.<DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>the <code>nextUpdate</code> date from the CRL, or null if not present.</DL></DD></DL><HR><A NAME="getRevokedCertificate(java.math.BigInteger)"><!-- --></A><H3>getRevokedCertificate</H3><PRE>public abstract <A HREF="../../../java/security/cert/X509CRLEntry.html">X509CRLEntry</A> <B>getRevokedCertificate</B>(<A HREF="../../../java/math/BigInteger.html">BigInteger</A>&nbsp;serialNumber)</PRE><DL><DD>Gets the CRL entry, if any, with the given certificate serialNumber.<DD><DL></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>serialNumber</CODE> - the serial number of the certificate for which a CRL entry is to be looked up<DT><B>Returns:</B><DD>the entry with the given serial number, or null if no such entry exists in this CRL.<DT><B>See Also: </B><DD><A HREF="../../../java/security/cert/X509CRLEntry.html"><CODE>X509CRLEntry</CODE></A></DL></DD></DL><HR><A NAME="getRevokedCertificates()"><!-- --></A><H3>getRevokedCertificates</H3><PRE>public abstract <A HREF="../../../java/util/Set.html">Set</A> <B>getRevokedCertificates</B>()</PRE><DL><DD>Gets all the entries from this CRL. This returns a Set of X509CRLEntry objects.<DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>all the entries or null if there are none present.<DT><B>See Also: </B><DD><A HREF="../../../java/security/cert/X509CRLEntry.html"><CODE>X509CRLEntry</CODE></A></DL></DD></DL><HR><A NAME="getTBSCertList()"><!-- --></A><H3>getTBSCertList</H3><PRE>public abstract byte[] <B>getTBSCertList</B>()                               throws <A HREF="../../../java/security/cert/CRLException.html">CRLException</A></PRE><DL><DD>Gets the DER-encoded CRL information, the <code>tbsCertList</code> from this CRL. This can be used to verify the signature independently.<DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>the DER-encoded CRL information.<DT><B>Throws:</B><DD><CODE><A HREF="../../../java/security/cert/CRLException.html">CRLException</A></CODE> - if an encoding error occurs.</DL></DD></DL><HR><A NAME="getSignature()"><!-- --></A><H3>getSignature</H3><PRE>public abstract byte[] <B>getSignature</B>()</PRE><DL><DD>Gets the <code>signature</code> value (the raw signature bits) from  the CRL. The ASN.1 definition for this is: <pre> signature     BIT STRING   </pre><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>the signature.</DL></DD></DL><HR><A NAME="getSigAlgName()"><!-- --></A><H3>getSigAlgName</H3><PRE>public abstract <A HREF="../../../java/lang/String.html">String</A> <B>getSigAlgName</B>()</PRE><DL><DD>Gets the signature algorithm name for the CRL signature algorithm. An example is the string "SHA-1/DSA". The ASN.1 definition for this is: <pre> signatureAlgorithm   AlgorithmIdentifier<p> AlgorithmIdentifier  ::=  SEQUENCE  {     algorithm               OBJECT IDENTIFIER,     parameters              ANY DEFINED BY algorithm OPTIONAL  }                             -- contains a value of the type                             -- registered for use with the                             -- algorithm object identifier value </pre>  <p>The algorithm name is determined from the <code>algorithm</code> OID string.<DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>the signature algorithm name.</DL></DD></DL><HR><A NAME="getSigAlgOID()"><!-- --></A><H3>getSigAlgOID</H3><PRE>public abstract <A HREF="../../../java/lang/String.html">String</A> <B>getSigAlgOID</B>()</PRE><DL><DD>Gets the signature algorithm OID string from the CRL. An OID is represented by a set of positive whole numbers separated by periods. For example, the string "1.2.840.10040.4.3" identifies the SHA-1 with DSA signature algorithm, as per RFC 2459.  <p>See <CODE>getSigAlgName()#getSigAlgName</CODE> for  relevant ASN.1 definitions.<DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>the signature algorithm OID string.</DL></DD></DL><HR><A NAME="getSigAlgParams()"><!-- --></A><H3>getSigAlgParams</H3><PRE>public abstract byte[] <B>getSigAlgParams</B>()</PRE><DL><DD>Gets the DER-encoded signature algorithm parameters from this CRL's signature algorithm. In most cases, the signature algorithm parameters are null; the parameters are usually supplied with the public key. If access to individual parameter values is needed then use <A HREF="../../../java/security/AlgorithmParameters.html"><CODE>AlgorithmParameters</CODE></A> and instantiate with the name returned by <CODE>getSigAlgName()#getSigAlgName</CODE>.  <p>See <CODE>getSigAlgName()#getSigAlgName</CODE> for  relevant ASN.1 definitions.<DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>the DER-encoded signature algorithm parameters, or         null if no parameters are present.</DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ========== START OF NAVBAR ========== --><A NAME="navbar_bottom"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">  <TR ALIGN="center" VALIGN="top">  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/X509CRL.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>  </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><b>Java<sup><font size=-2>TM</font></sup>&nbsp;2&nbsp;Platform<br>Std.&nbsp;Ed. v1.3</b></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">&nbsp;<A HREF="../../../java/security/cert/X509Certificate.html"><B>PREV CLASS</B></A>&nbsp;&nbsp;<A HREF="../../../java/security/cert/X509CRLEntry.html"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">  <A HREF="../../../index.html" TARGET="_top"><B>FRAMES</B></A>  &nbsp;&nbsp;<A HREF="X509CRL.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">  SUMMARY: &nbsp;INNER&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: &nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><!-- =========== END OF NAVBAR =========== --><HR><font size="-1"><a href="http://java.sun.com/cgi-bin/bugreport.cgi">Submit a bug or feature</a><br>For further API reference and developer documentation, see <a href="http://java.sun.com/products/jdk/1.3/devdocs-vs-specs.html">Java 2 SDK SE Developer Documentation</a>. That documentation  contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. <p>Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.<br>Copyright 1993-2000 Sun Microsystems, Inc. 901 San Antonio Road<br>Palo Alto, California, 94303, U.S.A.  All Rights Reserved.</font></BODY></HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -