javax.crypto

Home
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
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Natural Language Processing
51.Net
52.Parser
53.PDF
54.Portal
55.Profiler
56.Project Management
57.Report
58.RSS RDF
59.Rule Engine
60.Science
61.Scripting
62.Search Engine
63.Security
64.Sevlet Container
65.Source Control
66.Swing Library
67.Template Engine
68.Test Coverage
69.Testing
70.UML
71.Web Crawler
72.Web Framework
73.Web Mail
74.Web Server
75.Web Services
76.Web Services apache cxf 2.2.6
77.Web Services AXIS2
78.Wiki Engine
79.Workflow Engines
80.XML
81.XML UI
Java Source Code / Java Documentation  » Apache Harmony Java SE » javax package » javax.crypto 
javax.crypto
Java Source File NameTypeComment
BadPaddingException.javaClass The exception that is thrown when a padding mechanism is expected for the input data, but the input data does not have the proper padding bytes.
Cipher.javaClass This class provides access to implementations of cryptographic ciphers for encryption and decryption.
CipherInputStream.javaClass This class wraps an InputStream and a cipher so that read() methods return data that are read from the underlying InputStream and processed by the cipher.

The cipher must be initialized for the requested operation before being used by a CipherInputStream .

CipherInputStreamTest.javaClass
CipherOutputStream.javaClass This class wraps an output stream and a cipher so that write methods send the data through the cipher before writing them to the underlying output stream.

The cipher must be initialized for the requested operation before being used by a CipherOutputStream .

CipherOutputStreamTest.javaClass
CipherSpi.javaClass This class defines the Service Provider Interface (SPI) for cryptographic ciphers.

Implementers of cryptographic ciphers must implement all the abstract methods for every cipher they implement.

CipherSpiTest.javaClass Tests for CipherSpi class constructors and methods.
EncryptedPrivateKeyInfo.javaClass This class implements the EncryptedPrivateKeyInfo ASN.1 type as specified in PKCS #8 - Private-Key Information Syntax Standard.
ExemptionMechanism.javaClass This class implements the functionality of an exemption mechanism such as key recovery, key weakening, or key escrow.
ExemptionMechanismException.javaClass This is the base class for ExemptionMechanismException .
ExemptionMechanismSpi.javaClass The Service Provider Interface (SPI) definition for the ExemptionMechanism class.
ExemptionMechanismSpiTest.javaClass Tests for ExemptionMechanismSpi class constructors and methods.
IllegalBlockSizeException.javaClass The exception, that is thrown when the data length provided to a block cipher does not match the block size of the cipher.
KeyAgreement.javaClass This class provides the functionality for a key exchange protocol.
KeyAgreementSpi.javaClass The Service Provider Interface (SPI) definition for the KeyAgreement class.
KeyAgreementSpiTest.javaClass Tests for KeyAgreementSpi class constructors and methods.
KeyGenerator.javaClass This class provides the public API for generating symmetric cryptographic keys.
KeyGeneratorSpi.javaClass The Service Provider Interface (SPI) definition for the KeyGenerator class.
KeyGeneratorSpiTest.javaClass Tests for KeyGeneratorSpi class constructors and methods.
Mac.javaClass This class provides the public API for Message Authentication Code (MAC) algorithms.
MacSpi.javaClass The Service-Provider Interface (SPI) definition for the Mac class.
MacSpiTest.javaClass Tests for MacSpi class constructors and methods.
NoSuchPaddingException.javaClass The exception that is thrown when the requested padding mechanism is not supported.
NullCipher.javaClass This class provides an identity cipher that does not transform the input data in any way.
SealedObject.javaClass A SealedObject is a wrapper around a serializable object instance and encrypts it using a cryptographic cipher.
SealedObjectTest.javaClass
SecretKey.javaInterface A cryptographic secret (symmetric) key.
SecretKeyFactory.javaClass The public API for SecretKeyFactory implementations.
SecretKeyFactorySpi.javaClass The Service Provider Interface (SPI) definition for the SecretKeyFactory class.
SecretKeyFactorySpiTest.javaClass Tests for SecretKeyFactorySpi class constructors and methods.
ShortBufferException.javaClass The exception that is thrown when the result of an operation is attempted to store in a user provided buffer that is too small.
w_w__w.___j___a___va2s_._co_m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.