Developer's Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
virtual P6R::P6ERR P6R::p6IDigest2::calculateMD2 ( P6CRYPTODATASOURCE pInData,
P6BOOL  base64Encode,
P6CRYPTODATASINK pOutData 
)
pure virtual

MD2 (Message Digest Algorithm 2) is a cryptographic hash function that was developed by Ronald Rivest in 1989 and specified in RFC 1319.

It's digest length is 128 bits. MD2 was shown to be vulnerable to attack in 2004 and therefore should not be used in new designs. It is provided for compatibility with previous protocols and applications which specify its use. The MD2 of either a file (both binary and text) or a buffer can be calculated.

See Also
RFC-1319
Parameters
pInData[ in ] Pointer to the data to calculate the MD2 over.
base64Encode[ in ] Flag indicating whether the MD2 should be encoded in base64 (otherwise it is binary string)
pOutData[ in ] Pointer to where to copy the MD2 digest value.
Returns
SuccessP6R::eOk 
FailureP6R::eNotInitializedA successful call to initialize was not made before this call.
P6R::eInvalidArgOne of the parameters is NULL.
P6R::eNotFoundFile data source does not exist.
P6R::eIoErrorWrite to file data sink failed.
P6R::eTooSmallThe buffer data sink is too small to contain the generated value.
P6R::eTooBig/td>Internal error
P6R::eFailAndExceptionThe digest calculation failed. Exception record provides detailed error info.