mirror of
https://github.com/openharmony/third_party_openhitls.git
synced 2026-07-01 10:05:26 -04:00
58eab462f0
fix the issue of not ignoring duplicate certificates when loading them - In the certificate verification phase, users need to obtain the peer certificate by calling HITLS_GetPeerCertChain. Currently, the peer certificate is stored in the finish phase, which needs to be modified. - When certificates are duplicated, an error should not be reported. Instead, the duplicated certificates should be ignored and a success message should be returned. Cherry-picked from: https://gitcode.com/openHiTLS/openhitls/merge_requests/1307 Signed-off-by: Dongjianwei001 <dongjianwei1@huawei.com>
74 lines
2.1 KiB
C
74 lines
2.1 KiB
C
/*
|
|
* This file is part of the openHiTLS project.
|
|
*
|
|
* openHiTLS is licensed under the Mulan PSL v2.
|
|
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
* You may obtain a copy of Mulan PSL v2 at:
|
|
*
|
|
* http://license.coscl.org.cn/MulanPSL2
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
* See the Mulan PSL v2 for more details.
|
|
*/
|
|
|
|
#ifndef SESSION_H
|
|
#define SESSION_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "hitls_build.h"
|
|
#include "sal_time.h"
|
|
#include "hitls_session.h"
|
|
#include "cert.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define MAX_MASTER_KEY_SIZE 512u /* <= tls1.2 master keyis 48 bytes. TLS1.3 can be to 256 bytes. */
|
|
|
|
/* Increments the reference count for session */
|
|
void HITLS_SESS_UpRef(HITLS_Session *sess);
|
|
|
|
/* Deep copy session */
|
|
HITLS_Session *SESS_Copy(HITLS_Session *src);
|
|
|
|
/* Disable session */
|
|
void SESS_Disable(HITLS_Session *sess);
|
|
|
|
/* set peerCert */
|
|
int32_t SESS_SetPeerCert(HITLS_Session *sess, CERT_Pair *peerCert);
|
|
|
|
/* get peerCert */
|
|
int32_t SESS_GetPeerCert(HITLS_Session *sess, CERT_Pair **peerCert);
|
|
|
|
/* set ticket */
|
|
int32_t SESS_SetTicket(HITLS_Session *sess, uint8_t *ticket, uint32_t ticketSize);
|
|
|
|
/* get ticket */
|
|
int32_t SESS_GetTicket(const HITLS_Session *sess, uint8_t **ticket, uint32_t *ticketSize);
|
|
|
|
/* set hostName */
|
|
int32_t SESS_SetHostName(HITLS_Session *sess, uint32_t hostNameSize, uint8_t *hostName);
|
|
|
|
/* get hostName */
|
|
int32_t SESS_GetHostName(HITLS_Session *sess, uint32_t *hostNameSize, uint8_t **hostName);
|
|
|
|
/* Check the validity of the session */
|
|
bool SESS_CheckValidity(HITLS_Session *sess, uint64_t curTime);
|
|
|
|
uint64_t SESS_GetStartTime(HITLS_Session *sess);
|
|
|
|
int32_t SESS_SetStartTime(HITLS_Session *sess, uint64_t startTime);
|
|
|
|
int32_t SESS_SetTicketAgeAdd(HITLS_Session *sess, uint32_t ticketAgeAdd);
|
|
|
|
uint32_t SESS_GetTicketAgeAdd(const HITLS_Session *sess);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // SESSION_H
|