1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/EN7526G_3.18Kernel_SDK/apps/public/matrixssl-1-8/matrixSsl.h
2024-07-22 01:58:46 -03:00

166 lines
5.7 KiB
C
Executable File

/*
* matrixSsl.h
* Release $Name: $
*
* Public header file for MatrixSSL
* Implementations interacting with the matrixssl library should
* only use the APIs and definitions used in this file.
*/
/*
* Copyright (c) PeerSec Networks, 2002-2006. All Rights Reserved.
* The latest version of this code is available at http://www.matrixssl.org
*
* This software is open source; 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.
*
* This General Public License does NOT permit incorporating this software
* into proprietary programs. If you are unable to comply with the GPL, a
* commercial license for this software may be purchased from PeerSec Networks
* at http://www.peersec.com
*
* This program is distributed in 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* http://www.gnu.org/copyleft/gpl.html
*/
/******************************************************************************/
#ifndef _h_MATRIXSSL
#define _h_MATRIXSSL
#ifdef __cplusplus
extern "C" {
#endif
//#include "src/matrixInternal.h"
#include "matrixCommon.h"
/******************************************************************************/
/*
Maximum SSL record size, per specification
*/
#define SSL_MAX_PLAINTEXT_LEN 0x4000 /* 16KB */
#define SSL_MAX_RECORD_LEN SSL_MAX_PLAINTEXT_LEN + 2048
#define SSL_MAX_BUF_SIZE SSL_MAX_RECORD_LEN + 0x5
/*
Return codes from public apis
Not all apis return all codes. See documentation for more details.
*/
#define SSL_SUCCESS 0 /* Generic success */
#define SSL_ERROR -1 /* generic ssl error, see error code */
#define SSL_FULL -2 /* must call sslRead before decoding */
#define SSL_PARTIAL -3 /* more data reqired to parse full msg */
#define SSL_SEND_RESPONSE -4 /* decode produced output data */
#define SSL_PROCESS_DATA -5 /* succesfully decoded application data */
#define SSL_ALERT -6 /* we've decoded an alert */
#define SSL_FILE_NOT_FOUND -7 /* File not found */
#define SSL_MEM_ERROR -8 /* Memory allocation failure */
/*
SSL Alert levels and descriptions
This implementation treats all alerts as fatal
*/
#define SSL_ALERT_LEVEL_WARNING 1
#define SSL_ALERT_LEVEL_FATAL 2
#define SSL_ALERT_CLOSE_NOTIFY 0
#define SSL_ALERT_UNEXPECTED_MESSAGE 10
#define SSL_ALERT_BAD_RECORD_MAC 20
#define SSL_ALERT_DECOMPRESSION_FAILURE 30
#define SSL_ALERT_HANDSHAKE_FAILURE 40
#define SSL_ALERT_NO_CERTIFICATE 41
#define SSL_ALERT_BAD_CERTIFICATE 42
#define SSL_ALERT_UNSUPPORTED_CERTIFICATE 43
#define SSL_ALERT_CERTIFICATE_REVOKED 44
#define SSL_ALERT_CERTIFICATE_EXPIRED 45
#define SSL_ALERT_CERTIFICATE_UNKNOWN 46
#define SSL_ALERT_ILLEGAL_PARAMETER 47
/*
Use as return code in user validation callback to allow
anonymous connections to proceed
*/
#define SSL_ALLOW_ANON_CONNECTION 67
/******************************************************************************/
/*
* Public API set
*/
MATRIXPUBLIC int matrixSslOpen(void);
MATRIXPUBLIC void matrixSslClose(void);
MATRIXPUBLIC int matrixSslReadKeys(sslKeys_t **keys, char *certFile,
char *privFile, char *privPass, char *trustedCAFile);
MATRIXPUBLIC int matrixSslReadKeysMem(sslKeys_t **keys,
unsigned char *certBuf, int certLen,
unsigned char *privBuf, int privLen,
unsigned char *trustedCABuf, int trustedCALen);
MATRIXPUBLIC void matrixSslFreeKeys(sslKeys_t *keys);
MATRIXPUBLIC int matrixSslNewSession(ssl_t **ssl, sslKeys_t *keys,
sslSessionId_t *session, int flags);
MATRIXPUBLIC void matrixSslDeleteSession(ssl_t *ssl);
MATRIXPUBLIC int matrixSslDecode(ssl_t *ssl, sslBuf_t *in, sslBuf_t *out,
unsigned char *error, unsigned char *alertLevel,
unsigned char *alertDescription);
MATRIXPUBLIC int matrixSslEncode(ssl_t *ssl, unsigned char *in, int inlen,
sslBuf_t *out);
MATRIXPUBLIC int matrixSslEncodeClosureAlert(ssl_t *ssl, sslBuf_t *out);
MATRIXPUBLIC int matrixSslHandshakeIsComplete(ssl_t *ssl);
MATRIXPUBLIC void matrixSslSetCertValidator(ssl_t *ssl,
int (*certValidator)(sslCertInfo_t *, void *arg),
void *arg);
#ifdef MULTI_CA
MATRIXPUBLIC void matrixSslSetNewCertReader(ssl_t *ssl,int (*readNewCert)(sslKeys_t **keys),
int maxCertNum);
#endif
MATRIXPUBLIC void matrixSslSetSessionOption(ssl_t *ssl, int option,
void *arg);
MATRIXPUBLIC void matrixSslGetAnonStatus(ssl_t *ssl, int *anonArg);
MATRIXPUBLIC void matrixSslAssignNewKeys(ssl_t *ssl, sslKeys_t *keys);
/*
Client side APIs
*/
MATRIXPUBLIC int matrixSslEncodeClientHello(ssl_t *ssl, sslBuf_t *out,
unsigned short cipherSpec);
MATRIXPUBLIC int matrixSslGetSessionId(ssl_t *ssl,
sslSessionId_t **sessionId);
MATRIXPUBLIC void matrixSslFreeSessionId(sslSessionId_t *sessionId);
/*
Server side APIs
*/
MATRIXPUBLIC int matrixSslEncodeHelloRequest(ssl_t *ssl, sslBuf_t *out);
MATRIXPUBLIC int matrixSslSetResumptionFlag(ssl_t *ssl, char flag);
MATRIXPUBLIC int matrixSslGetResumptionFlag(ssl_t *ssl, char *flag);
/******************************************************************************/
#ifdef __cplusplus
}
#endif
#endif /* _h_MATRIXSSL */
/******************************************************************************/