provide compatibility function DES_key_sched, same as DES_set_key

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14676 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-03-23 12:31:13 +00:00
parent efefe92a1c
commit 21382af672
2 changed files with 11 additions and 0 deletions

View File

@@ -196,6 +196,16 @@ DES_set_key_checked(DES_cblock *key, DES_key_schedule *ks)
return DES_set_key(key, ks);
}
/*
* Compatibility function for eay libdes
*/
int
DES_key_sched(DES_cblock *key, DES_key_schedule *ks)
{
return DES_set_key(key, ks);
}
/*
*
*/