wolfSSL SSL/TLS library, support up to TLS1.3

Dependents:   CyaSSL-Twitter-OAuth4Tw Example-client-tls-cert TwitterReader TweetTest ... more

Committer:
wolfSSL
Date:
Fri Jun 05 00:11:07 2020 +0000
Revision:
17:a5f916481144
Parent:
16:8e0d178b1d1e
wolfSSL 4.4.0

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wolfSSL 14:167253f4e170 1 /* selftest.h
wolfSSL 14:167253f4e170 2 *
wolfSSL 16:8e0d178b1d1e 3 * Copyright (C) 2006-2020 wolfSSL Inc.
wolfSSL 14:167253f4e170 4 *
wolfSSL 14:167253f4e170 5 * This file is part of wolfSSL.
wolfSSL 14:167253f4e170 6 *
wolfSSL 14:167253f4e170 7 * wolfSSL is free software; you can redistribute it and/or modify
wolfSSL 14:167253f4e170 8 * it under the terms of the GNU General Public License as published by
wolfSSL 14:167253f4e170 9 * the Free Software Foundation; either version 2 of the License, or
wolfSSL 14:167253f4e170 10 * (at your option) any later version.
wolfSSL 14:167253f4e170 11 *
wolfSSL 14:167253f4e170 12 * wolfSSL is distributed in the hope that it will be useful,
wolfSSL 14:167253f4e170 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wolfSSL 14:167253f4e170 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wolfSSL 14:167253f4e170 15 * GNU General Public License for more details.
wolfSSL 14:167253f4e170 16 *
wolfSSL 14:167253f4e170 17 * You should have received a copy of the GNU General Public License
wolfSSL 14:167253f4e170 18 * along with this program; if not, write to the Free Software
wolfSSL 14:167253f4e170 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
wolfSSL 14:167253f4e170 20 */
wolfSSL 14:167253f4e170 21
wolfSSL 14:167253f4e170 22
wolfSSL 14:167253f4e170 23
wolfSSL 14:167253f4e170 24 #ifndef WOLFCRYPT_SELF_TEST_H
wolfSSL 14:167253f4e170 25 #define WOLFCRYPT_SELF_TEST_H
wolfSSL 14:167253f4e170 26
wolfSSL 14:167253f4e170 27 #include <wolfssl/wolfcrypt/types.h>
wolfSSL 14:167253f4e170 28
wolfSSL 14:167253f4e170 29
wolfSSL 14:167253f4e170 30 #ifdef __cplusplus
wolfSSL 14:167253f4e170 31 extern "C" {
wolfSSL 14:167253f4e170 32 #endif
wolfSSL 14:167253f4e170 33
wolfSSL 14:167253f4e170 34 #ifdef HAVE_SELFTEST
wolfSSL 16:8e0d178b1d1e 35 /* Get wolfCrypt CAVP version */
wolfSSL 16:8e0d178b1d1e 36 WOLFSSL_API const char* wolfCrypt_GetVersion_CAVP_selftest(void);
wolfSSL 16:8e0d178b1d1e 37
wolfSSL 14:167253f4e170 38 /* wolfCrypt self test, runs CAVP KATs */
wolfSSL 14:167253f4e170 39 WOLFSSL_API int wolfCrypt_SelfTest(void);
wolfSSL 14:167253f4e170 40 #endif
wolfSSL 14:167253f4e170 41
wolfSSL 14:167253f4e170 42 #ifdef __cplusplus
wolfSSL 14:167253f4e170 43 } /* extern "C" */
wolfSSL 14:167253f4e170 44 #endif
wolfSSL 14:167253f4e170 45
wolfSSL 14:167253f4e170 46 #endif /* WOLFCRYPT_SELF_TEST_H */
wolfSSL 14:167253f4e170 47
wolfSSL 14:167253f4e170 48
wolfSSL 14:167253f4e170 49