Add stub for EVP_BytesToKey

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17131 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-04-21 13:06:27 +00:00
parent 965277671b
commit 67e1f79d36

View File

@@ -763,3 +763,20 @@ EVP_aes_256_cbc(void)
};
return &aes_256_cbc;
}
/*
*
*/
int
EVP_BytesToKey(const EVP_CIPHER *type,
const EVP_MD *md,
const void *salt,
const void *data, size_t datalen,
int count,
const void *key,
const void *iv)
{
return 0;
}