switch to the DES_ api, dont provide any compat glue

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12748 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-09-03 09:26:03 +00:00
parent 992f32ca35
commit 49e0243cc5
29 changed files with 590 additions and 577 deletions

View File

@@ -35,14 +35,14 @@
/* MIT Link and source compatibility */
#ifdef des_fixup_key_parity
#undef des_fixup_key_parity
#endif /* des_fixup_key_parity */
#ifdef DES_fixup_key_parity
#undef DES_fixup_key_parity
#endif /* DES_fixup_key_parity */
void des_fixup_key_parity(des_cblock *key);
void DES_fixup_key_parity(DES_cblock *key);
void
des_fixup_key_parity(des_cblock *key)
DES_fixup_key_parity(DES_cblock *key)
{
des_set_odd_parity(key);
DES_set_odd_parity(key);
}