2025-06-24 19:28:39 +09:00
|
|
|
/* test_asn.h
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2006-2025 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
|
2025-07-10 16:01:52 -06:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2025-06-24 19:28:39 +09:00
|
|
|
* (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 WOLFCRYPT_TEST_ASN_H
|
|
|
|
|
#define WOLFCRYPT_TEST_ASN_H
|
|
|
|
|
|
|
|
|
|
#include <tests/api/api_decl.h>
|
|
|
|
|
|
2025-08-14 16:57:42 +09:00
|
|
|
int test_SetAsymKeyDer(void);
|
2025-08-08 13:15:37 -04:00
|
|
|
int test_GetSetShortInt(void);
|
2025-07-22 14:50:42 -04:00
|
|
|
int test_wc_IndexSequenceOf(void);
|
2026-01-07 16:50:20 +01:00
|
|
|
int test_wolfssl_local_MatchBaseName(void);
|
2025-06-24 19:28:39 +09:00
|
|
|
|
|
|
|
|
#define TEST_ASN_DECLS \
|
2025-08-14 16:57:42 +09:00
|
|
|
TEST_DECL_GROUP("asn", test_SetAsymKeyDer), \
|
2025-08-08 13:15:37 -04:00
|
|
|
TEST_DECL_GROUP("asn", test_GetSetShortInt), \
|
2026-01-07 16:50:20 +01:00
|
|
|
TEST_DECL_GROUP("asn", test_wc_IndexSequenceOf), \
|
|
|
|
|
TEST_DECL_GROUP("asn", test_wolfssl_local_MatchBaseName)
|
2025-06-24 19:28:39 +09:00
|
|
|
|
|
|
|
|
#endif /* WOLFCRYPT_TEST_ASN_H */
|