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

Dependents:   OS

Committer:
sPymbed
Date:
Wed Nov 20 13:27:48 2019 +0000
Revision:
17:ff9d1e86ad5f
Parent:
14:167253f4e170
removed: wolfcrypt

Who changed what in which revision?

UserRevisionLine numberNew contents of line
wolfSSL 14:167253f4e170 1 /* objects.h
wolfSSL 14:167253f4e170 2 *
wolfSSL 14:167253f4e170 3 * Copyright (C) 2006-2016 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 #ifndef WOLFSSL_OBJECTS_H_
wolfSSL 14:167253f4e170 24 #define WOLFSSL_OBJECTS_H_
wolfSSL 14:167253f4e170 25
wolfSSL 14:167253f4e170 26 #include <wolfssl/wolfcrypt/settings.h>
wolfSSL 14:167253f4e170 27 #include <wolfssl/openssl/ssl.h>
wolfSSL 14:167253f4e170 28
wolfSSL 14:167253f4e170 29 #ifdef __cplusplus
wolfSSL 14:167253f4e170 30 extern "C" {
wolfSSL 14:167253f4e170 31 #endif
wolfSSL 14:167253f4e170 32
wolfSSL 14:167253f4e170 33 #define OBJ_nid2sn wolfSSL_OBJ_nid2sn
wolfSSL 14:167253f4e170 34 #define OBJ_obj2nid wolfSSL_OBJ_obj2nid
wolfSSL 14:167253f4e170 35 #define OBJ_sn2nid wolfSSL_OBJ_sn2nid
wolfSSL 14:167253f4e170 36 #define OBJ_nid2ln wolfSSL_OBJ_nid2ln
wolfSSL 14:167253f4e170 37 #define OBJ_txt2nid wolfSSL_OBJ_txt2nid
wolfSSL 14:167253f4e170 38 #define OBJ_nid2obj wolfSSL_OBJ_nid2obj
wolfSSL 14:167253f4e170 39 #define OBJ_obj2txt wolfSSL_OBJ_obj2txt
wolfSSL 14:167253f4e170 40 #define OBJ_cleanup wolfSSL_OBJ_cleanup
wolfSSL 14:167253f4e170 41 #define ASN1_OBJECT_free wolfSSL_ASN1_OBJECT_free
wolfSSL 14:167253f4e170 42
wolfSSL 14:167253f4e170 43
wolfSSL 14:167253f4e170 44 #ifdef __cplusplus
wolfSSL 14:167253f4e170 45 } /* extern "C" */
wolfSSL 14:167253f4e170 46 #endif
wolfSSL 14:167253f4e170 47
wolfSSL 14:167253f4e170 48 #endif /* WOLFSSL_OBJECTS_H_ */
wolfSSL 14:167253f4e170 49