*/
#include "crypto_int.h"
-#include <openssl/des.h>
#ifdef K5_OPENSSL_DES_KEY_PARITY
+
+#include <openssl/des.h>
+
void
k5_des_fixup_key_parity(unsigned char *keybits)
{
DES_set_odd_parity((DES_cblock *)keybits);
}
+
#endif
*/
#include "crypto_int.h"
+
+#ifdef K5_OPENSSL_CAMELLIA
+
#include <openssl/evp.h>
#include <openssl/camellia.h>
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
#include <openssl/modes.h>
#endif
-#ifdef K5_OPENSSL_CAMELLIA
-
static krb5_error_code
cbc_enc(krb5_key key, const krb5_data *ivec, krb5_crypto_iov *data,
size_t num_data);