Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
wolfssl/wolfcrypt/selftest.h@16:048e5e270a58, 2019-11-19 (annotated)
- Committer:
- sPymbed
- Date:
- Tue Nov 19 14:32:16 2019 +0000
- Revision:
- 16:048e5e270a58
- Parent:
- 14:167253f4e170
working ssl
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
wolfSSL | 14:167253f4e170 | 1 | /* selftest.h |
wolfSSL | 14:167253f4e170 | 2 | * |
wolfSSL | 14:167253f4e170 | 3 | * Copyright (C) 2006-2018 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 | 14:167253f4e170 | 35 | /* wolfCrypt self test, runs CAVP KATs */ |
wolfSSL | 14:167253f4e170 | 36 | WOLFSSL_API int wolfCrypt_SelfTest(void); |
wolfSSL | 14:167253f4e170 | 37 | #endif |
wolfSSL | 14:167253f4e170 | 38 | |
wolfSSL | 14:167253f4e170 | 39 | #ifdef __cplusplus |
wolfSSL | 14:167253f4e170 | 40 | } /* extern "C" */ |
wolfSSL | 14:167253f4e170 | 41 | #endif |
wolfSSL | 14:167253f4e170 | 42 | |
wolfSSL | 14:167253f4e170 | 43 | #endif /* WOLFCRYPT_SELF_TEST_H */ |
wolfSSL | 14:167253f4e170 | 44 | |
wolfSSL | 14:167253f4e170 | 45 | |
wolfSSL | 14:167253f4e170 | 46 |