Java Doc for Certificate.java in  » 6.0-JDK-Modules » j2me » java » security » cert » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » java.security.cert 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.security.cert.Certificate

All known Subclasses:   java.security.cert.X509Certificate,
Certificate
abstract public class Certificate implements java.io.Serializable(Code)

Abstract class for managing a variety of identity certificates. An identity certificate is a binding of a principal to a public key which is vouched for by another principal. (A principal represents an entity such as an individual user, a group, or a corporation.)

This class is an abstraction for certificates that have different formats but important common uses. For example, different types of certificates, such as X.509 and PGP, share general certificate functionality (like encoding and verifying) and some types of information (like a public key).

X.509, PGP, and SDSI certificates can all be implemented by subclassing the Certificate class, even though they contain different sets of information, and they store and retrieve the information in different ways.
See Also:   X509Certificate
See Also:   CertificateFactory
author:
   Hemma Prafullchandra
version:
   1.25, 10/10/06


Inner Class :protected static class CertificateRep implements java.io.Serializable


Constructor Summary
protected  Certificate(String type)
     Creates a certificate of the specified type.

Method Summary
public  booleanequals(Object other)
     Compares this certificate for equality with the specified object.
abstract public  byte[]getEncoded()
     Returns the encoded form of this certificate.
abstract public  PublicKeygetPublicKey()
     Gets the public key from this certificate.
final public  StringgetType()
     Returns the type of this certificate.
public  inthashCode()
     Returns a hashcode value for this certificate from its encoded form.
abstract public  StringtoString()
     Returns a string representation of this certificate.
abstract public  voidverify(PublicKey key)
     Verifies that this certificate was signed using the private key that corresponds to the specified public key.
abstract public  voidverify(PublicKey key, String sigProvider)
     Verifies that this certificate was signed using the private key that corresponds to the specified public key.
protected  ObjectwriteReplace()
     Replace the Certificate to be serialized.


Constructor Detail
Certificate
protected Certificate(String type)(Code)
Creates a certificate of the specified type.
Parameters:
  type - the standard name of the certificate type.See Appendix A in the Java Cryptography Architecture API Specification & Reference for information about standard certificate types.




Method Detail
equals
public boolean equals(Object other)(Code)
Compares this certificate for equality with the specified object. If the other object is an instanceof Certificate, then its encoded form is retrieved and compared with the encoded form of this certificate.
Parameters:
  other - the object to test for equality with this certificate. true iff the encoded forms of the two certificatesmatch, false otherwise.



getEncoded
abstract public byte[] getEncoded() throws CertificateEncodingException(Code)
Returns the encoded form of this certificate. It is assumed that each certificate type would have only a single form of encoding; for example, X.509 certificates would be encoded as ASN.1 DER. the encoded form of this certificate
exception:
  CertificateEncodingException - if an encoding error occurs.



getPublicKey
abstract public PublicKey getPublicKey()(Code)
Gets the public key from this certificate. the public key.



getType
final public String getType()(Code)
Returns the type of this certificate. the type of this certificate.



hashCode
public int hashCode()(Code)
Returns a hashcode value for this certificate from its encoded form. the hashcode value.



toString
abstract public String toString()(Code)
Returns a string representation of this certificate. a string representation of this certificate.



verify
abstract public void verify(PublicKey key) throws CertificateException, NoSuchAlgorithmException, InvalidKeyException, NoSuchProviderException, SignatureException(Code)
Verifies that this certificate was signed using the private key that corresponds to the specified public key.
Parameters:
  key - the PublicKey used to carry out the verification.
exception:
  NoSuchAlgorithmException - on unsupported signaturealgorithms.
exception:
  InvalidKeyException - on incorrect key.
exception:
  NoSuchProviderException - if there's no default provider.
exception:
  SignatureException - on signature errors.
exception:
  CertificateException - on encoding errors.



verify
abstract public void verify(PublicKey key, String sigProvider) throws CertificateException, NoSuchAlgorithmException, InvalidKeyException, NoSuchProviderException, SignatureException(Code)
Verifies that this certificate was signed using the private key that corresponds to the specified public key. This method uses the signature verification engine supplied by the specified provider.
Parameters:
  key - the PublicKey used to carry out the verification.
Parameters:
  sigProvider - the name of the signature provider.
exception:
  NoSuchAlgorithmException - on unsupported signaturealgorithms.
exception:
  InvalidKeyException - on incorrect key.
exception:
  NoSuchProviderException - on incorrect provider.
exception:
  SignatureException - on signature errors.
exception:
  CertificateException - on encoding errors.



writeReplace
protected Object writeReplace() throws java.io.ObjectStreamException(Code)
Replace the Certificate to be serialized. the alternate Certificate object to be serialized
throws:
  java.io.ObjectStreamException - if a new object representing this Certificate could not be created



Methods inherited from java.lang.Object
public boolean equals(Object obj)(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.