Virgil Security Crypto library  1.8.2
List of all members
virgil::crypto::foundation::VirgilKDF Class Reference

Provides key derivation function algorithms. More...

#include <VirgilKDF.h>

Inheritance diagram for virgil::crypto::foundation::VirgilKDF:
virgil::crypto::foundation::asn1::VirgilAsn1Compatible

Public Member Functions

Constructor / Destructor
 VirgilKDF ()
 Create object with undefined algorithm. More...
 
virtual ~VirgilKDF () throw ()
 Polymorphic destructor.
 
Info

Provide detail information about object.

std::string name () const
 Returns name of the key derivation function. More...
 
Process key derivation
virgil::crypto::VirgilByteArray derive (const virgil::crypto::VirgilByteArray &in, size_t outSize)
 Derive key from the given key material. More...
 
Copy constructor / assignment operator
Warning
Copy constructor and assignment operator create copy of the object as it was created by on of the creation methods. All changes in the internal state, that was made after creation, are not copied!
 VirgilKDF (const VirgilKDF &other)
 
VirgilKDFoperator= (const VirgilKDF &rhs)
 
VirgilAsn1Compatible implementation
Marshalling format:
KeyDerivationFunction ::= AlgorithmIdentifier {{ KDFAlgorithms }}
KDFAlgorithms AlgorithmIdentifier ::= {
{ OID id-kdf-kdf1 PARMS HashFunction } |
{ OID id-kdf-kdf2 PARMS HashFunction } ,
... -- additional algorithms ---
}
HashFunction ::= AlgorithmIdentifier {{ HashAlgorithms }}
HashAlgorithms AlgorithmIdentifier ::= {
-- nist identifiers
{ OID id-sha1 PARMS NULL } |
{ OID id-sha256 PARMS NULL } |
{ OID id-sha384 PARMS NULL } |
{ OID id-sha512 PARMS NULL } ,
... -- additional algorithms ---
}
virtual size_t asn1Write (virgil::crypto::foundation::asn1::VirgilAsn1Writer &asn1Writer, size_t childWrittenBytes=0) const
 Write object state to the writer. More...
 
virtual void asn1Read (virgil::crypto::foundation::asn1::VirgilAsn1Reader &asn1Reader)
 Read object state from the reader. More...
 
- Public Member Functions inherited from virgil::crypto::foundation::asn1::VirgilAsn1Compatible
virgil::crypto::VirgilByteArray toAsn1 () const
 Save object state to the ASN.1 structure.
 
void fromAsn1 (const virgil::crypto::VirgilByteArray &asn1)
 Restore object state from the ASN.1 structure.
 
virtual ~VirgilAsn1Compatible () throw ()
 Polymorphic destructor.
 

Static Public Member Functions

Creation methods

Object creation with specific key derivation function.

static VirgilKDF kdf1 ()
 Configures with KDF1 (ISO-18033-2) algorithm.
 
static VirgilKDF kdf2 ()
 Configures with KDF1 (ISO-18033-2) algorithm.
 

Additional Inherited Members

- Protected Member Functions inherited from virgil::crypto::foundation::asn1::VirgilAsn1Compatible
virtual void checkAsn1ParamNotEmpty (const virgil::crypto::VirgilByteArray &param, const char *paramName=0) const
 If given parameter is empty exception will be thrown. More...
 

Detailed Description

Provides key derivation function algorithms.

Constructor & Destructor Documentation

virgil::crypto::foundation::VirgilKDF::VirgilKDF ( )

Create object with undefined algorithm.

Warning
SHOULD be used in conjunction with VirgilAsn1Compatible interface, i.e. VirgilKDF kdf = VirgilKDF().fromAsn1(asn1);

Member Function Documentation

virtual void virgil::crypto::foundation::VirgilKDF::asn1Read ( virgil::crypto::foundation::asn1::VirgilAsn1Reader asn1Reader)
virtual

Read object state from the reader.

Parameters
asn1Readerreader payloaded with ASN.1 to be read.

Implements virgil::crypto::foundation::asn1::VirgilAsn1Compatible.

virtual size_t virgil::crypto::foundation::VirgilKDF::asn1Write ( virgil::crypto::foundation::asn1::VirgilAsn1Writer asn1Writer,
size_t  childWrittenBytes = 0 
) const
virtual

Write object state to the writer.

Parameters
asn1Writerwriter that should be payloaded by subclasses.
childWrittenBytescount of bytes that was written by subclasses.
Returns
Writen bytes count.

Implements virgil::crypto::foundation::asn1::VirgilAsn1Compatible.

virgil::crypto::VirgilByteArray virgil::crypto::foundation::VirgilKDF::derive ( const virgil::crypto::VirgilByteArray &  in,
size_t  outSize 
)

Derive key from the given key material.

Parameters
in- input sequence (key material).
outSize- size of the output sequence.
Returns
Output sequence.
std::string virgil::crypto::foundation::VirgilKDF::name ( ) const

Returns name of the key derivation function.

Returns
Name of the key derivation function.

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