mirror of https://github.com/wolfSSL/wolfssl.git
Missing config for krb5 1.16.1
parent
fa913f797a
commit
d5783d1eaa
|
@ -4730,7 +4730,8 @@ fi
|
||||||
|
|
||||||
if test "$ENABLED_KRB" = "yes"
|
if test "$ENABLED_KRB" = "yes"
|
||||||
then
|
then
|
||||||
AM_CFLAGS="$AM_CFLAGS -DWOLFSSL_KRB -DWOLFSSL_AES_DIRECT"
|
AM_CFLAGS="$AM_CFLAGS -DWOLFSSL_KRB -DWOLFSSL_AES_DIRECT -DWOLFSSL_DES_ECB"
|
||||||
|
AM_CFLAGS="$AM_CFLAGS -DHAVE_EX_DATA"
|
||||||
|
|
||||||
# Requires PKCS7
|
# Requires PKCS7
|
||||||
if test "x$ENABLED_PKCS7" = "xno"
|
if test "x$ENABLED_PKCS7" = "xno"
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
/* camellia.h
|
||||||
|
*
|
||||||
|
* Copyright (C) 2006-2021 wolfSSL Inc.
|
||||||
|
*
|
||||||
|
* This file is part of wolfSSL.
|
||||||
|
*
|
||||||
|
* wolfSSL is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* wolfSSL is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef WOLFSSL_CAMELLIA_H_
|
||||||
|
#define WOLFSSL_CAMELLIA_H_
|
||||||
|
|
||||||
|
#include <wolfssl/wolfcrypt/camellia.h>
|
||||||
|
|
||||||
|
#endif /* WOLFSSL_CAMELLIA_H_ */
|
|
@ -8,6 +8,7 @@ nobase_include_HEADERS+= \
|
||||||
wolfssl/openssl/bio.h \
|
wolfssl/openssl/bio.h \
|
||||||
wolfssl/openssl/bn.h \
|
wolfssl/openssl/bn.h \
|
||||||
wolfssl/openssl/buffer.h \
|
wolfssl/openssl/buffer.h \
|
||||||
|
wolfssl/openssl/camellia.h \
|
||||||
wolfssl/openssl/cmac.h \
|
wolfssl/openssl/cmac.h \
|
||||||
wolfssl/openssl/cms.h \
|
wolfssl/openssl/cms.h \
|
||||||
wolfssl/openssl/compat_types.h \
|
wolfssl/openssl/compat_types.h \
|
||||||
|
|
Loading…
Reference in New Issue