]> andersk Git - openssh.git/blobdiff - cipher-aes.c
- (dtucker) [openbsd-compat/port-irix.c] Add errno.h, found by Iain Morgan.
[openssh.git] / cipher-aes.c
index bbfbe72108784046cde8452a699b46b04d2de9f6..14ef10f03c5dfa00036b96365957a46d4fdc3d74 100644 (file)
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#if OPENSSL_VERSION_NUMBER < 0x00907000L
 #include "includes.h"
-RCSID("$OpenBSD: cipher-aes.c,v 1.1 2003/05/15 03:08:29 markus Exp $");
+
+/* compatibility with old or broken OpenSSL versions */
+#include "openbsd-compat/openssl-compat.h"
+
+#ifdef USE_BUILTIN_RIJNDAEL
+#include <sys/types.h>
 
 #include <openssl/evp.h>
+
+#include <stdarg.h>
+
 #include "rijndael.h"
 #include "xmalloc.h"
 #include "log.h"
@@ -153,4 +160,4 @@ evp_rijndael(void)
 #endif
        return (&rijndal_cbc);
 }
-#endif
+#endif /* USE_BUILTIN_RIJNDAEL */
This page took 0.049963 seconds and 4 git commands to generate.