xref: /openbsd-src/sbin/isakmpd/libcrypto.h (revision c442abe9b4e9224a8b60cad39d3f9ef65794ba97)
1*c442abe9Stb /* $OpenBSD: libcrypto.h,v 1.19 2021/10/13 16:56:30 tb Exp $	 */
26c8b696cSniklas /* $EOM: libcrypto.h,v 1.16 2000/09/28 12:53:27 niklas Exp $	 */
34a7fdf37Sniklas 
44a7fdf37Sniklas /*
56c8b696cSniklas  * Copyright (c) 1999, 2000 Niklas Hallqvist.  All rights reserved.
6bdbf6df3Sniklas  * Copyright (c) 1999, 2000 Angelos D. Keromytis.  All rights reserved.
74a7fdf37Sniklas  *
84a7fdf37Sniklas  * Redistribution and use in source and binary forms, with or without
94a7fdf37Sniklas  * modification, are permitted provided that the following conditions
104a7fdf37Sniklas  * are met:
114a7fdf37Sniklas  * 1. Redistributions of source code must retain the above copyright
124a7fdf37Sniklas  *    notice, this list of conditions and the following disclaimer.
134a7fdf37Sniklas  * 2. Redistributions in binary form must reproduce the above copyright
144a7fdf37Sniklas  *    notice, this list of conditions and the following disclaimer in the
154a7fdf37Sniklas  *    documentation and/or other materials provided with the distribution.
164a7fdf37Sniklas  *
174a7fdf37Sniklas  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
184a7fdf37Sniklas  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
194a7fdf37Sniklas  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
204a7fdf37Sniklas  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
214a7fdf37Sniklas  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
224a7fdf37Sniklas  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
234a7fdf37Sniklas  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
244a7fdf37Sniklas  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
254a7fdf37Sniklas  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
264a7fdf37Sniklas  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
274a7fdf37Sniklas  */
284a7fdf37Sniklas 
294a7fdf37Sniklas /*
304a7fdf37Sniklas  * This code was written under funding by Ericsson Radio Systems.
314a7fdf37Sniklas  */
324a7fdf37Sniklas 
334a7fdf37Sniklas #ifndef _LIBCRYPTO_H_
344a7fdf37Sniklas #define _LIBCRYPTO_H_
354a7fdf37Sniklas 
364a7fdf37Sniklas #include <stdio.h>
377331c528Sniklas 
387331c528Sniklas #include <openssl/ssl.h>
397331c528Sniklas #include <openssl/bio.h>
40422c51c9Sderaadt #include <openssl/md5.h>
417331c528Sniklas #include <openssl/pem.h>
42bccd9e1fSjsg #include <openssl/rsa.h>
437331c528Sniklas #include <openssl/x509_vfy.h>
447331c528Sniklas #include <openssl/x509.h>
454a7fdf37Sniklas 
464a7fdf37Sniklas #endif				/* _LIBCRYPTO_H_ */
47