fixed error in mapping of prf algorithms

This commit is contained in:
Jan Hutter
2005-11-22 11:53:50 +00:00
parent 83cad34b94
commit fa147f1bd7
@@ -122,7 +122,7 @@ mapping_t encryption_algorithm_m[] = {
*/
mapping_t pseudo_random_function_m[] = {
{PRF_UNDEFINED, "PRF_UNDEFINED"},
{PRF_HMAC_MD5, "PRF_HMAC_SHA1"},
{PRF_HMAC_MD5, "PRF_HMAC_MD5"},
{PRF_HMAC_SHA1, "PRF_HMAC_SHA1"},
{PRF_HMAC_TIGER, "PRF_HMAC_TIGER"},
{PRF_AES128_CBC, "PRF_AES128_CBC"},
@@ -497,7 +497,7 @@ static status_t clone(private_transform_substructure_t *this,transform_substruct
attributes->destroy(attributes);
*clone = new_clone;
*clone = &(new_clone->public);
return SUCCESS;
}