activemq-cpp-3.9.0
decaf::security::MessageDigestSpi Class Referenceabstract

This class defines the Service Provider Interface (SPI) for the MessageDigest class, which provides the functionality of a message digest algorithm, such as MD5 or SHA. More...

#include <src/main/decaf/security/MessageDigestSpi.h>

Inheritance diagram for decaf::security::MessageDigestSpi:

Public Member Functions

 MessageDigestSpi ()
 
virtual ~MessageDigestSpi ()
 
virtual bool isCloneable () const
 Queries the SPI implementation and returns true if the SPI can be cloned. More...
 
virtual MessageDigestSpiclone ()
 Returns a clone if the implementation supports being cloned. More...
 
- Public Member Functions inherited from decaf::security::SecuritySpi
 SecuritySpi ()
 
virtual ~SecuritySpi ()
 

Protected Member Functions

virtual int engineGetDigestLength ()=0
 Returns the digest length in bytes. More...
 
virtual void engineUpdate (unsigned char input)=0
 Updates the digest using the specified byte. More...
 
virtual void engineUpdate (const unsigned char *input, int size, int offset, int length)=0
 Updates the digest using the specified array of bytes, starting at the specified offset. More...
 
virtual void engineReset ()=0
 Resets the digest for further use. More...
 
virtual void engineUpdate (const std::vector< unsigned char > &input)=0
 Update the digest using the specified Vector of Bytes. More...
 
virtual void engineUpdate (decaf::nio::ByteBuffer &input)=0
 Update the digest using the specified ByteBuffer. More...
 
virtual std::vector< unsigned
char > 
engineDigest ()=0
 Completes the hash computation by performing final operations such as padding. More...
 
virtual int engineDigest (unsigned char *buffer, int size, int offset, int length)=0
 Completes the hash computation by performing final operations such as padding. More...
 

Friends

class MessageDigest
 

Detailed Description

This class defines the Service Provider Interface (SPI) for the MessageDigest class, which provides the functionality of a message digest algorithm, such as MD5 or SHA.

Message digests are secure one-way hash functions that take arbitrary-sized data and output a fixed-length hash value.

All the pure virtual methods in this class must be implemented by a cryptographic service provider who wishes to supply the implementation of a particular message digest algorithm.

Implementations are free to implement clone method or throw a CloneNotSupportedException..

Since
1.0

Constructor & Destructor Documentation

decaf::security::MessageDigestSpi::MessageDigestSpi ( )
virtual decaf::security::MessageDigestSpi::~MessageDigestSpi ( )
virtual

Member Function Documentation

virtual MessageDigestSpi* decaf::security::MessageDigestSpi::clone ( )
virtual

Returns a clone if the implementation supports being cloned.

Returns
a new pointer that is a copy of this object.
Exceptions
CloneNotSupportedExceptionif this is called on an implementation that does not support cloning.

Reimplemented in decaf::internal::security::provider::crypto::MD4MessageDigestSpi, decaf::internal::security::provider::crypto::MD5MessageDigestSpi, and decaf::internal::security::provider::crypto::SHA1MessageDigestSpi.

virtual std::vector<unsigned char> decaf::security::MessageDigestSpi::engineDigest ( )
protectedpure virtual

Completes the hash computation by performing final operations such as padding.

Once engineDigest has been called, the engine should be reset (see engineReset). Resetting is the responsibility of the engine implementor.

Returns
an STL vector of bytes containing the resulting hash value.

Implemented in decaf::internal::security::provider::crypto::MD4MessageDigestSpi, decaf::internal::security::provider::crypto::MD5MessageDigestSpi, and decaf::internal::security::provider::crypto::SHA1MessageDigestSpi.

virtual int decaf::security::MessageDigestSpi::engineDigest ( unsigned char *  buffer,
int  size,
int  offset,
int  length 
)
protectedpure virtual

Completes the hash computation by performing final operations such as padding.

Once engineDigest has been called, the engine should be reset (see engineReset). Resetting is the responsibility of the engine implementor.

Parameters
bufferThe output buffer in which to store the digest
sizeThe size of the given input buffer
offsetThe offset to start from in the output buffer
lengthThe number of bytes within buffer allotted for the digest. Both this default implementation and the SUN provider do not return partial digests. The presence of this parameter is solely for consistency in our API's. If the value of this parameter is less than the actual digest length, the method will throw a DigestException. This parameter is ignored if its value is greater than or equal to the actual digest length.
Returns
the length of the digest stored in the output buffer.
Exceptions
DigestExceptionif an error occurs.
NullPointerExceptionif the buffer pointer is NULL.

Implemented in decaf::internal::security::provider::crypto::MD4MessageDigestSpi, decaf::internal::security::provider::crypto::MD5MessageDigestSpi, and decaf::internal::security::provider::crypto::SHA1MessageDigestSpi.

virtual int decaf::security::MessageDigestSpi::engineGetDigestLength ( )
protectedpure virtual
virtual void decaf::security::MessageDigestSpi::engineReset ( )
protectedpure virtual
virtual void decaf::security::MessageDigestSpi::engineUpdate ( unsigned char  input)
protectedpure virtual
virtual void decaf::security::MessageDigestSpi::engineUpdate ( const unsigned char *  input,
int  size,
int  offset,
int  length 
)
protectedpure virtual

Updates the digest using the specified array of bytes, starting at the specified offset.

Parameters
inputThe array of bytes to use for the update.
sizeThe size of the given input buffer..
offsetThe offset to start from in the array of bytes.
lengthThe number of bytes to use, starting at offset.
Exceptions
NullPointerExceptionif the input array pointer is NULL.

Implemented in decaf::internal::security::provider::crypto::MD4MessageDigestSpi, decaf::internal::security::provider::crypto::MD5MessageDigestSpi, and decaf::internal::security::provider::crypto::SHA1MessageDigestSpi.

virtual void decaf::security::MessageDigestSpi::engineUpdate ( const std::vector< unsigned char > &  input)
protectedpure virtual

Update the digest using the specified Vector of Bytes.

Parameters
inputThe vector of bytes that will be used to update the digest.

Implemented in decaf::internal::security::provider::crypto::MD4MessageDigestSpi, decaf::internal::security::provider::crypto::MD5MessageDigestSpi, and decaf::internal::security::provider::crypto::SHA1MessageDigestSpi.

virtual void decaf::security::MessageDigestSpi::engineUpdate ( decaf::nio::ByteBuffer input)
protectedpure virtual

Update the digest using the specified ByteBuffer.

The digest is updated using the input.remaining() bytes starting at input.position(). Upon return, the buffer's position will be equal to its limit; its limit will not have changed.

Parameters
inputThe ByteBuffer instance that will be used to update the digest.

Implemented in decaf::internal::security::provider::crypto::MD4MessageDigestSpi, decaf::internal::security::provider::crypto::MD5MessageDigestSpi, and decaf::internal::security::provider::crypto::SHA1MessageDigestSpi.

virtual bool decaf::security::MessageDigestSpi::isCloneable ( ) const
virtual

Queries the SPI implementation and returns true if the SPI can be cloned.

Returns
true if the SPI is clonable.

Reimplemented in decaf::internal::security::provider::crypto::MD4MessageDigestSpi, decaf::internal::security::provider::crypto::MD5MessageDigestSpi, and decaf::internal::security::provider::crypto::SHA1MessageDigestSpi.

Friends And Related Function Documentation

friend class MessageDigest
friend

The documentation for this class was generated from the following file: