/* */ #ifndef D_ARC4_ENCRYPTOR_H #define D_ARC4_ENCRYPTOR_H #include "common.h" #ifdef USE_INTERNAL_ARC4 #include "InternalARC4Encryptor.h" #elif HAVE_LIBNETTLE #include "LibnettleARC4Encryptor.h" #elif HAVE_LIBGCRYPT #include "LibgcryptARC4Encryptor.h" #elif HAVE_OPENSSL #include "LibsslARC4Encryptor.h" #endif #endif // D_ARC4_ENCRYPTOR_H