mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
c0a2e8db67
This is to adapt to Heimdal: commit 3a5e91eca26284661fd2294dfc485305e5d5cc3d Author: Nicolas Williams <nico@twosigma.com> Date: Tue Oct 25 22:20:45 2022 -0500 hcrypto: Remove MD2 with prejudice NOTE: THIS COMMIT WON'T COMPILE/WORK ON ITS OWN! Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
20 lines
467 B
C
20 lines
467 B
C
#ifndef __crypto_headers_h__
|
|
#define __crypto_headers_h__
|
|
#ifdef KRB5
|
|
#include <krb5-types.h>
|
|
#endif
|
|
#include <hcrypto/evp.h>
|
|
#include <hcrypto/des.h>
|
|
#include <hcrypto/md4.h>
|
|
#include <hcrypto/md5.h>
|
|
#include <hcrypto/sha.h>
|
|
#include <hcrypto/rc4.h>
|
|
#include <hcrypto/rc2.h>
|
|
#include <hcrypto/aes.h>
|
|
#include <hcrypto/ui.h>
|
|
#include <hcrypto/rand.h>
|
|
#include <hcrypto/engine.h>
|
|
#include <hcrypto/pkcs12.h>
|
|
#include <hcrypto/hmac.h>
|
|
#endif /* __crypto_headers_h__ */
|