Reece Wilson
afa7c8f5f8
[+] TLS::GetSupportedCipherSuites [+] TLS::CipherSuiteFromString [+] TLS::CipherSuiteToString [+] internal logic for setting up the ciphersuite array
17 lines
462 B
C++
17 lines
462 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: TLSCipherSuites.hpp
|
|
Date: 2022-8-27
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO::TLS
|
|
{
|
|
AUKN_SYM const AuList<AuUInt16> &GetDefaultCipherSuites();
|
|
AUKN_SYM const AuList<AuUInt16> &GetSupportedCipherSuites();
|
|
|
|
AUKN_SYM AuUInt16 CipherSuiteFromString(const AuString &string);
|
|
AUKN_SYM AuString CipherSuiteToString(AuUInt16 uCipherSuite);
|
|
} |