Classes | |
class | CECPQ2KeyShare |
struct | CipherTest |
struct | ClientConfig |
struct | CurveTest |
struct | ECHConfigParams |
class | ECKeyShare |
struct | ExpectedCipher |
class | MockQUICTransport |
class | MockQUICTransportPair |
class | QUICMethodTest |
struct | ssl_test_ticket_aead_state |
class | SSLVersionTest |
class | TicketAEADMethodTest |
class | TrustTokenBadKeyTest |
class | TrustTokenMetadataTest |
class | TrustTokenProtocolTest |
class | TrustTokenProtocolTestBase |
class | UnownedSSLExData |
struct | VersionParam |
class | X25519KeyShare |
Typedefs | |
using | TicketAEADMethodParam = testing::tuple< uint16_t, unsigned, ssl_test_ticket_aead_failure_mode > |
Enumerations | |
enum | ssl_test_ticket_aead_failure_mode { ssl_test_ticket_aead_ok = 0, ssl_test_ticket_aead_seal_fail, ssl_test_ticket_aead_open_soft_fail, ssl_test_ticket_aead_open_hard_fail } |
Functions | |
static std::vector< const TRUST_TOKEN_METHOD * > | AllMethods () |
static void | AppendSession (SSL_SESSION *session, void *arg) |
int | BORINGSSL_enum_c_type_test (void) |
static bssl::UniquePtr< CRYPTO_BUFFER > | BufferFromPEM (const char *pem) |
static bool | CacheEquals (SSL_CTX *ctx, const std::vector< SSL_SESSION * > &expected) |
static bssl::UniquePtr< X509 > | CertFromPEM (const char *pem) |
static bool | ChainsEqual (STACK_OF(X509) *chain, const std::vector< X509 * > &expected) |
static bool | CipherListsEqual (SSL_CTX *ctx, const std::vector< ExpectedCipher > &expected) |
static std::string | CipherListToString (SSL_CTX *ctx) |
static bool | CompleteHandshakes (SSL *client, SSL *server) |
static bool | ConnectClientAndServer (bssl::UniquePtr< SSL > *out_client, bssl::UniquePtr< SSL > *out_server, SSL_CTX *client_ctx, SSL_CTX *server_ctx, const ClientConfig &config=ClientConfig(), bool shed_handshake_config=true) |
static void | ConnectClientAndServerWithTicketMethod (bssl::UniquePtr< SSL > *out_client, bssl::UniquePtr< SSL > *out_server, SSL_CTX *client_ctx, SSL_CTX *server_ctx, unsigned retry_count, ssl_test_ticket_aead_failure_mode failure_mode, SSL_SESSION *session) |
static bool | CreateClientAndServer (bssl::UniquePtr< SSL > *out_client, bssl::UniquePtr< SSL > *out_server, SSL_CTX *client_ctx, SSL_CTX *server_ctx) |
static bssl::UniquePtr< SSL_SESSION > | CreateClientSession (SSL_CTX *client_ctx, SSL_CTX *server_ctx, const ClientConfig &config=ClientConfig()) |
static bssl::UniquePtr< SSL_CTX > | CreateContextWithTestCertificate (const SSL_METHOD *method) |
static bssl::UniquePtr< SSL_SESSION > | CreateSessionWithTicket (uint16_t version, size_t ticket_len) |
static bssl::UniquePtr< SSL_SESSION > | CreateTestSession (uint32_t number) |
static void | CurrentTimeCallback (const SSL *ssl, timeval *out_clock) |
static bool | DecodeBase64 (std::vector< uint8_t > *out, const char *in) |
static uint16_t | EpochFromSequence (uint64_t seq) |
static bool | ExpectBadWriteRetry () |
static void | ExpectDefaultVersion (uint16_t min_version, uint16_t max_version, const SSL_METHOD *(*method)(void)) |
static void | ExpectFDs (const SSL *ssl, int rfd, int wfd) |
static void | ExpectReceivedTransportParamsEqual (const SSL *ssl, Span< const uint8_t > expected) |
static bssl::UniquePtr< SSL_SESSION > | ExpectSessionRenewed (SSL_CTX *client_ctx, SSL_CTX *server_ctx, SSL_SESSION *session) |
static void | ExpectSessionReused (SSL_CTX *client_ctx, SSL_CTX *server_ctx, SSL_SESSION *session, bool want_reused) |
void | ExpectSigAlgsEqual (Span< const uint16_t > expected, Span< const uint16_t > actual) |
static void | ExpectTicketKeyChanged (SSL_CTX *ctx, uint8_t *inout_key, bool changed) |
static bool | FlushNewSessionTickets (SSL *client, SSL *server) |
static void | FrozenTimeCallback (const SSL *ssl, timeval *out_clock) |
static bssl::UniquePtr< X509 > | GetChainTestCertificate () |
static bssl::UniquePtr< CRYPTO_BUFFER > | GetChainTestCertificateBuffer () |
static bssl::UniquePtr< X509 > | GetChainTestIntermediate () |
static bssl::UniquePtr< CRYPTO_BUFFER > | GetChainTestIntermediateBuffer () |
static bssl::UniquePtr< EVP_PKEY > | GetChainTestKey () |
static bool | GetClientHello (SSL *ssl, std::vector< uint8_t > *out) |
static size_t | GetClientHelloLen (uint16_t max_version, uint16_t session_version, size_t ticket_len) |
static bssl::UniquePtr< X509 > | GetECDSATestCertificate () |
static bssl::UniquePtr< EVP_PKEY > | GetECDSATestKey () |
static bool | GetECHLength (SSL_CTX *ctx, size_t *out_client_hello_len, size_t *out_ech_len, size_t max_name_len, const char *name) |
static bool | GetExtensionOrder (SSL_CTX *client_ctx, std::vector< uint16_t > *out, SSL_ECH_KEYS *ech_keys, bool decrypt_ech) |
static bool | GetServerTicketTime (long *out, const SSL_SESSION *session) |
static bssl::UniquePtr< X509 > | GetTestCertificate () |
static bssl::UniquePtr< EVP_PKEY > | GetTestKey () |
static const char * | GetVersionName (uint16_t version) |
static bool | InstallECHConfigList (SSL *client, const SSL_ECH_KEYS *keys) |
INSTANTIATE_TEST_SUITE_P (TicketAEADMethodTests, TicketAEADMethodTest, testing::Combine(testing::Values(TLS1_2_VERSION, TLS1_3_VERSION), testing::Values(0, 1, 2), testing::Values(ssl_test_ticket_aead_ok, ssl_test_ticket_aead_seal_fail, ssl_test_ticket_aead_open_soft_fail, ssl_test_ticket_aead_open_hard_fail)), TicketAEADMethodParamToString) | |
INSTANTIATE_TEST_SUITE_P (TrustTokenAllBadKeyTest, TrustTokenBadKeyTest, testing::Combine(testing::ValuesIn(AllMethods()), testing::Bool(), testing::Values(0, 1, 2, 3, 4, 5))) | |
INSTANTIATE_TEST_SUITE_P (TrustTokenAllMetadataTest, TrustTokenMetadataTest, testing::Combine(testing::ValuesIn(AllMethods()), testing::Values(TrustTokenProtocolTest::KeyID(0), TrustTokenProtocolTest::KeyID(1), TrustTokenProtocolTest::KeyID(2)), testing::Bool())) | |
INSTANTIATE_TEST_SUITE_P (TrustTokenAllProtocolTest, TrustTokenProtocolTest, testing::ValuesIn(AllMethods())) | |
INSTANTIATE_TEST_SUITE_P (WithVersion, SSLVersionTest, testing::ValuesIn(kAllVersions), [](const testing::TestParamInfo< VersionParam > &i) { return i.param.name;}) | |
static bssl::UniquePtr< EVP_PKEY > | KeyFromPEM (const char *pem) |
const char * | LevelToString (ssl_encryption_level_t level) |
bool | MakeECHConfig (std::vector< uint8_t > *out, const ECHConfigParams ¶ms) |
static bssl::UniquePtr< SSL_ECH_KEYS > | MakeTestECHKeys (uint8_t config_id=1) |
void | MoveBIOs (SSL *dest, SSL *src) |
static int | RenewTicketCallback (SSL *ssl, uint8_t *key_name, uint8_t *iv, EVP_CIPHER_CTX *ctx, HMAC_CTX *hmac_ctx, int encrypt) |
static int | SaveLastSession (SSL *ssl, SSL_SESSION *session) |
Span< const uint8_t > | SessionIDOf (const SSL *ssl) |
static std::string | SigAlgsToString (Span< const uint16_t > sigalgs) |
static int | ssl_test_ticket_aead_ex_index_dup (CRYPTO_EX_DATA *to, const CRYPTO_EX_DATA *from, void **from_d, int index, long argl, void *argp) |
static void | ssl_test_ticket_aead_ex_index_free (void *parent, void *ptr, CRYPTO_EX_DATA *ad, int index, long argl, void *argp) |
static int | ssl_test_ticket_aead_get_ex_index () |
static size_t | ssl_test_ticket_aead_max_overhead (SSL *ssl) |
static ssl_ticket_aead_result_t | ssl_test_ticket_aead_open (SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out_len, const uint8_t *in, size_t in_len) |
static int | ssl_test_ticket_aead_seal (SSL *ssl, uint8_t *out, size_t *out_len, size_t max_out_len, const uint8_t *in, size_t in_len) |
static int | SwitchContext (SSL *ssl, int *out_alert, void *arg) |
static int | SwitchSessionIDContextSNI (SSL *ssl, int *out_alert, void *arg) |
TEST (GrowableArrayTest, GrowableArrayContainingGrowableArrays) | |
TEST (GrowableArrayTest, MoveConstructor) | |
TEST (GrowableArrayTest, Resize) | |
TEST (SpanTest, Accessor) | |
TEST (SpanTest, CtorConstFromArray) | |
TEST (SpanTest, CtorEmpty) | |
TEST (SpanTest, CtorFromPtrAndSize) | |
TEST (SpanTest, CtorFromVector) | |
TEST (SpanTest, MakeConstSpan) | |
TEST (SpanTest, MakeSpan) | |
TEST (SSLTest, AddChainCertHack) | |
TEST (SSLTest, AddClientCA) | |
TEST (SSLTest, ALPNConfig) | |
TEST (SSLTest, ApplyHandoffRemovesUnsupportedCiphers) | |
TEST (SSLTest, ApplyHandoffRemovesUnsupportedCurves) | |
TEST (SSLTest, BIO) | |
TEST (SSLTest, BuffersFailWithoutCustomVerify) | |
TEST (SSLTest, CanReleasePrivateKey) | |
TEST (SSLTest, CertCompression) | |
TEST (SSLTest, CipherProperties) | |
TEST (SSLTest, CipherRules) | |
TEST (SSLTest, ClientCABuffers) | |
TEST (SSLTest, ClientCAList) | |
TEST (SSLTest, ClientHello) | |
TEST (SSLTest, CopyWithoutEarlyData) | |
TEST (SSLTest, CurveRules) | |
TEST (SSLTest, CustomVerify) | |
TEST (SSLTest, DefaultVersion) | |
TEST (SSLTest, EarlyCallbackVersionSwitch) | |
TEST (SSLTest, ECHBuiltinVerifier) | |
TEST (SSLTest, ECHClientRandomsMatch) | |
TEST (SSLTest, ECHHasDuplicateConfigID) | |
TEST (SSLTest, ECHKeyConsistency) | |
TEST (SSLTest, ECHPadding) | |
TEST (SSLTest, ECHPublicName) | |
TEST (SSLTest, ECHServerConfigsWithoutRetryConfigs) | |
TEST (SSLTest, EmptyCipherList) | |
TEST (SSLTest, EnumTypes) | |
TEST (SSLTest, GetCertificate) | |
TEST (SSLTest, Handoff) | |
TEST (SSLTest, HandoffDeclined) | |
TEST (SSLTest, InternalSessionCache) | |
TEST (SSLTest, KeyUsageWithUIDs) | |
TEST (SSLTest, MarshalECHConfig) | |
TEST (SSLTest, NoCiphersAvailable) | |
TEST (SSLTest, Padding) | |
TEST (SSLTest, PermuteExtensions) | |
TEST (SSLTest, ProcessTLS13NewSessionTicket) | |
TEST (SSLTest, SealRecord) | |
TEST (SSLTest, SealRecordInPlace) | |
TEST (SSLTest, SealRecordInvalidSpanSize) | |
TEST (SSLTest, SealRecordTrailingData) | |
TEST (SSLTest, SelectNextProto) | |
TEST (SSLTest, SessionDuplication) | |
TEST (SSLTest, SessionEncoding) | |
TEST (SSLTest, SetBIO) | |
TEST (SSLTest, SetChainAndKey) | |
TEST (SSLTest, SetChainAndKeyMismatch) | |
TEST (SSLTest, SetFD) | |
TEST (SSLTest, SetVersion) | |
TEST (SSLTest, ShutdownIgnoresTickets) | |
TEST (SSLTest, SigAlgs) | |
TEST (SSLTest, SigAlgsList) | |
TEST (SSLTest, SignatureAlgorithmProperties) | |
TEST (SSLTest, UnsupportedECHConfig) | |
TEST (SSLTest, WriteAfterWrongVersionOnEarlyData) | |
TEST (SSLTest, WriteWhileExplicitRenegotiate) | |
TEST (SSLTest, ZeroSizedWiteFlushesHandshakeMessages) | |
TEST (TrustTokenTest, HExp1) | |
TEST (TrustTokenTest, HExp2) | |
TEST (TrustTokenTest, KeyGenExp1) | |
TEST (TrustTokenTest, KeyGenExp2PMB) | |
TEST (TrustTokenTest, KeyGenExp2VOPRF) | |
TEST_F (QUICMethodTest, Async) | |
TEST_F (QUICMethodTest, BadPostHandshake) | |
TEST_F (QUICMethodTest, Basic) | |
TEST_F (QUICMethodTest, Buffered) | |
TEST_F (QUICMethodTest, ClientRejectsMissingTransportParams) | |
TEST_F (QUICMethodTest, ExcessProvidedData) | |
TEST_F (QUICMethodTest, ForbidCrossProtocolResumptionClient) | |
TEST_F (QUICMethodTest, ForbidCrossProtocolResumptionServer) | |
TEST_F (QUICMethodTest, HalfRTTKeys) | |
TEST_F (QUICMethodTest, HelloRetryRequest) | |
TEST_F (QUICMethodTest, NoLegacySessionId) | |
TEST_F (QUICMethodTest, NoZeroRTTKeysBeforeReverify) | |
TEST_F (QUICMethodTest, NoZeroRTTTicketWithoutEarlyDataContext) | |
TEST_F (QUICMethodTest, ProvideWrongLevel) | |
TEST_F (QUICMethodTest, QuicCodePointDefault) | |
TEST_F (QUICMethodTest, QuicLegacyCodepointClientOnly) | |
TEST_F (QUICMethodTest, QuicLegacyCodepointDisabled) | |
TEST_F (QUICMethodTest, QuicLegacyCodepointEnabled) | |
TEST_F (QUICMethodTest, QuicLegacyCodepointServerOnly) | |
TEST_F (QUICMethodTest, ServerRejectsMissingTransportParams) | |
TEST_F (QUICMethodTest, SetTransportParameters) | |
TEST_F (QUICMethodTest, SetTransportParamsInCallback) | |
TEST_F (QUICMethodTest, TooMuchData) | |
TEST_F (QUICMethodTest, ZeroRTTAccept) | |
TEST_F (QUICMethodTest, ZeroRTTReject) | |
TEST_F (QUICMethodTest, ZeroRTTRejectMismatchedParameters) | |
TEST_P (SSLVersionTest, ALPNCipherAvailable) | |
TEST_P (SSLVersionTest, AutoChain) | |
TEST_P (SSLVersionTest, ClientSessionCacheMode) | |
TEST_P (SSLVersionTest, DefaultTicketKeyInitialization) | |
TEST_P (SSLVersionTest, DefaultTicketKeyRotation) | |
TEST_P (SSLVersionTest, DifferentKeyNoResume) | |
TEST_P (SSLVersionTest, DoubleSSLError) | |
TEST_P (SSLVersionTest, FakeIDsForTickets) | |
TEST_P (SSLVersionTest, GetPeerCertificate) | |
TEST_P (SSLVersionTest, GetServerName) | |
TEST_P (SSLVersionTest, NoPeerCertificate) | |
TEST_P (SSLVersionTest, OneSidedShutdown) | |
TEST_P (SSLVersionTest, RecordCallback) | |
TEST_P (SSLVersionTest, RetainOnlySHA256OfCerts) | |
TEST_P (SSLVersionTest, SameKeyResume) | |
TEST_P (SSLVersionTest, SequenceNumber) | |
TEST_P (SSLVersionTest, SessionIDContext) | |
TEST_P (SSLVersionTest, SessionTimeout) | |
TEST_P (SSLVersionTest, SessionVersion) | |
TEST_P (SSLVersionTest, SmallBuffer) | |
TEST_P (SSLVersionTest, SNICallback) | |
TEST_P (SSLVersionTest, SSLClearFailsWithShedding) | |
TEST_P (SSLVersionTest, SSLClearSessionResumption) | |
TEST_P (SSLVersionTest, SSLPending) | |
TEST_P (SSLVersionTest, SSLWriteRetry) | |
TEST_P (SSLVersionTest, TicketSessionIDsMatch) | |
TEST_P (SSLVersionTest, UnrelatedServerNoResume) | |
TEST_P (SSLVersionTest, VerifyBeforeCertRequest) | |
TEST_P (SSLVersionTest, Version) | |
TEST_P (SSLVersionTest, WriteAfterHandshakeSentFatalAlert) | |
TEST_P (SSLVersionTest, WriteAfterReadSentFatalAlert) | |
TEST_P (SSLVersionTest, WriteAfterShutdown) | |
TEST_P (TicketAEADMethodTest, Resume) | |
TEST_P (TrustTokenBadKeyTest, BadKey) | |
TEST_P (TrustTokenMetadataTest, ExcessDataProof) | |
TEST_P (TrustTokenMetadataTest, RawSetAndGetMetadata) | |
TEST_P (TrustTokenMetadataTest, SetAndGetMetadata) | |
TEST_P (TrustTokenMetadataTest, TooManyRequests) | |
TEST_P (TrustTokenMetadataTest, TruncatedProof) | |
TEST_P (TrustTokenProtocolTest, ExtraDataIssuanceResponse) | |
TEST_P (TrustTokenProtocolTest, InvalidToken) | |
TEST_P (TrustTokenProtocolTest, IssuedWithBadKeyID) | |
TEST_P (TrustTokenProtocolTest, TruncatedIssuanceRequest) | |
TEST_P (TrustTokenProtocolTest, TruncatedIssuanceResponse) | |
TEST_P (TrustTokenProtocolTest, TruncatedRedemptionRequest) | |
TEST_P (TrustTokenProtocolTest, TruncatedRedemptionResponse) | |
static void | TestConstCtor (Span< const int > s, const int *ptr, size_t size) |
static void | TestCtor (Span< int > s, const int *ptr, size_t size) |
std::string | TicketAEADMethodParamToString (const testing::TestParamInfo< TicketAEADMethodParam > ¶ms) |
static int | VerifySucceed (X509_STORE_CTX *store_ctx, void *arg) |
static bssl::UniquePtr< X509 > | X509FromBuffer (bssl::UniquePtr< CRYPTO_BUFFER > buffer) |
static int | XORCompressFunc (SSL *ssl, CBB *out, const uint8_t *in, size_t in_len) |
static int | XORDecompressFunc (SSL *ssl, CRYPTO_BUFFER **out, size_t uncompressed_len, const uint8_t *in, size_t in_len) |
Variables | |
static timeval | g_current_time |
static bssl::UniquePtr< SSL_SESSION > | g_last_session |
static int | g_ssl_test_ticket_aead_ex_index |
static CRYPTO_once_t | g_ssl_test_ticket_aead_ex_index_once = CRYPTO_ONCE_INIT |
static const VersionParam | kAllVersions [] |
static const char * | kBadCurvesLists [] |
static const char * | kBadRules [] |
static const char | kBadSessionExtraField [] |
static const char | kBadSessionTrailingData [] |
static const char | kBadSessionVersion [] |
static const char | kBoringSSLSession [] |
static const CipherTest | kCipherTests [] |
static const CurveTest | kCurveTests [] |
static const char | kCustomSession [] |
static const char * | kMustNotIncludeNull [] |
CONSTEXPR_ARRAY NamedGroup | kNamedGroups [] |
constexpr size_t | kNumQUICLevels = 4 |
static const char | kOpenSSLSession [] |
static const SSL_TICKET_AEAD_METHOD | kSSLTestTicketMethod |
static const uint8_t | kTestName [] |
static const size_t | kTicketKeyLen = 48 |
using BSSL_NAMESPACE_BEGIN::TicketAEADMethodParam = typedef testing::tuple<uint16_t, unsigned, ssl_test_ticket_aead_failure_mode> |
Definition at line 4604 of file ssl_test.cc.
Enumerator | |
---|---|
ssl_test_ticket_aead_ok | |
ssl_test_ticket_aead_seal_fail | |
ssl_test_ticket_aead_open_soft_fail | |
ssl_test_ticket_aead_open_hard_fail |
Definition at line 4457 of file ssl_test.cc.
|
static |
Definition at line 127 of file trust_token_test.cc.
|
static |
Definition at line 2361 of file ssl_test.cc.
int BSSL_NAMESPACE_BEGIN::BORINGSSL_enum_c_type_test | ( | void | ) |
Definition at line 5 of file ssl_c_test.c.
|
static |
Definition at line 1296 of file ssl_test.cc.
|
static |
Definition at line 2369 of file ssl_test.cc.
Definition at line 1198 of file ssl_test.cc.
|
static |
Definition at line 3827 of file ssl_test.cc.
|
static |
Definition at line 461 of file ssl_test.cc.
|
static |
Definition at line 437 of file ssl_test.cc.
Definition at line 1410 of file ssl_test.cc.
|
static |
Definition at line 1504 of file ssl_test.cc.
|
static |
Definition at line 4565 of file ssl_test.cc.
|
static |
Definition at line 1475 of file ssl_test.cc.
|
static |
Definition at line 1544 of file ssl_test.cc.
|
static |
Definition at line 1256 of file ssl_test.cc.
|
static |
Definition at line 1053 of file ssl_test.cc.
|
static |
Definition at line 2400 of file ssl_test.cc.
|
static |
Definition at line 3293 of file ssl_test.cc.
|
static |
Definition at line 795 of file ssl_test.cc.
Definition at line 2473 of file ssl_test.cc.
|
static |
Definition at line 3898 of file ssl_test.cc.
|
static |
Definition at line 885 of file ssl_test.cc.
Definition at line 2854 of file ssl_test.cc.
|
static |
Definition at line 6897 of file ssl_test.cc.
|
static |
Definition at line 3175 of file ssl_test.cc.
|
static |
Definition at line 3161 of file ssl_test.cc.
void BSSL_NAMESPACE_BEGIN::ExpectSigAlgsEqual | ( | Span< const uint16_t > | expected, |
Span< const uint16_t > | actual | ||
) |
Definition at line 5298 of file ssl_test.cc.
|
static |
Definition at line 3210 of file ssl_test.cc.
Definition at line 1441 of file ssl_test.cc.
|
static |
Definition at line 3297 of file ssl_test.cc.
|
static |
Definition at line 1347 of file ssl_test.cc.
|
static |
Definition at line 1314 of file ssl_test.cc.
|
static |
Definition at line 1373 of file ssl_test.cc.
|
static |
Definition at line 1351 of file ssl_test.cc.
|
static |
Definition at line 1377 of file ssl_test.cc.
Definition at line 1082 of file ssl_test.cc.
|
static |
Definition at line 1109 of file ssl_test.cc.
|
static |
Definition at line 1269 of file ssl_test.cc.
|
static |
Definition at line 1286 of file ssl_test.cc.
|
static |
Definition at line 2001 of file ssl_test.cc.
|
static |
Definition at line 7889 of file ssl_test.cc.
|
static |
Definition at line 3324 of file ssl_test.cc.
|
static |
Definition at line 1216 of file ssl_test.cc.
|
static |
Definition at line 1236 of file ssl_test.cc.
Definition at line 3713 of file ssl_test.cc.
|
static |
Definition at line 1714 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::INSTANTIATE_TEST_SUITE_P | ( | TicketAEADMethodTests | , |
TicketAEADMethodTest | , | ||
testing::Combine(testing::Values(TLS1_2_VERSION, TLS1_3_VERSION), testing::Values(0, 1, 2), testing::Values(ssl_test_ticket_aead_ok, ssl_test_ticket_aead_seal_fail, ssl_test_ticket_aead_open_soft_fail, ssl_test_ticket_aead_open_hard_fail)) | , | ||
TicketAEADMethodParamToString | |||
) |
BSSL_NAMESPACE_BEGIN::INSTANTIATE_TEST_SUITE_P | ( | TrustTokenAllBadKeyTest | , |
TrustTokenBadKeyTest | , | ||
testing::Combine(testing::ValuesIn(AllMethods()), testing::Bool(), testing::Values(0, 1, 2, 3, 4, 5)) | |||
) |
BSSL_NAMESPACE_BEGIN::INSTANTIATE_TEST_SUITE_P | ( | TrustTokenAllMetadataTest | , |
TrustTokenMetadataTest | , | ||
testing::Combine(testing::ValuesIn(AllMethods()), testing::Values(TrustTokenProtocolTest::KeyID(0), TrustTokenProtocolTest::KeyID(1), TrustTokenProtocolTest::KeyID(2)), testing::Bool()) | |||
) |
BSSL_NAMESPACE_BEGIN::INSTANTIATE_TEST_SUITE_P | ( | TrustTokenAllProtocolTest | , |
TrustTokenProtocolTest | , | ||
testing::ValuesIn(AllMethods()) | |||
) |
BSSL_NAMESPACE_BEGIN::INSTANTIATE_TEST_SUITE_P | ( | WithVersion | , |
SSLVersionTest | , | ||
testing::ValuesIn(kAllVersions) | , | ||
[] (const testing::TestParamInfo< VersionParam > &i) { return i.param.name;} | |||
) |
Definition at line 1207 of file ssl_test.cc.
const char* BSSL_NAMESPACE_BEGIN::LevelToString | ( | ssl_encryption_level_t | level | ) |
Definition at line 5805 of file ssl_test.cc.
bool BSSL_NAMESPACE_BEGIN::MakeECHConfig | ( | std::vector< uint8_t > * | out, |
const ECHConfigParams & | params | ||
) |
Definition at line 1645 of file ssl_test.cc.
|
static |
Definition at line 1694 of file ssl_test.cc.
Definition at line 5116 of file ssl_test.cc.
|
static |
Definition at line 3302 of file ssl_test.cc.
|
static |
Definition at line 1538 of file ssl_test.cc.
Definition at line 7364 of file ssl_test.cc.
Definition at line 5280 of file ssl_test.cc.
|
static |
Definition at line 4469 of file ssl_test.cc.
|
static |
Definition at line 4476 of file ssl_test.cc.
|
static |
Definition at line 4490 of file ssl_test.cc.
|
static |
Definition at line 4499 of file ssl_test.cc.
|
static |
Definition at line 4521 of file ssl_test.cc.
|
static |
Definition at line 4503 of file ssl_test.cc.
Definition at line 3567 of file ssl_test.cc.
|
static |
Definition at line 3223 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | GrowableArrayTest | , |
GrowableArrayContainingGrowableArrays | |||
) |
Definition at line 513 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | GrowableArrayTest | , |
MoveConstructor | |||
) |
Definition at line 501 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | GrowableArrayTest | , |
Resize | |||
) |
Definition at line 479 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SpanTest | , |
Accessor | |||
) |
Definition at line 78 of file boringssl-with-bazel/src/ssl/span_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SpanTest | , |
CtorConstFromArray | |||
) |
Definition at line 55 of file boringssl-with-bazel/src/ssl/span_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SpanTest | , |
CtorEmpty | |||
) |
Definition at line 35 of file boringssl-with-bazel/src/ssl/span_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SpanTest | , |
CtorFromPtrAndSize | |||
) |
Definition at line 40 of file boringssl-with-bazel/src/ssl/span_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SpanTest | , |
CtorFromVector | |||
) |
Definition at line 46 of file boringssl-with-bazel/src/ssl/span_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SpanTest | , |
MakeConstSpan | |||
) |
Definition at line 70 of file boringssl-with-bazel/src/ssl/span_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SpanTest | , |
MakeSpan | |||
) |
Definition at line 62 of file boringssl-with-bazel/src/ssl/span_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
AddChainCertHack | |||
) |
Definition at line 4193 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
AddClientCA | |||
) |
Definition at line 1595 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ALPNConfig | |||
) |
Definition at line 7682 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ApplyHandoffRemovesUnsupportedCiphers | |||
) |
Definition at line 5418 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ApplyHandoffRemovesUnsupportedCurves | |||
) |
Definition at line 5456 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
BIO | |||
) |
Definition at line 7629 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
BuffersFailWithoutCustomVerify | |||
) |
Definition at line 4299 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
CanReleasePrivateKey | |||
) |
Definition at line 7779 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
CertCompression | |||
) |
Definition at line 5094 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
CipherProperties | |||
) |
Definition at line 903 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
CipherRules | |||
) |
Definition at line 547 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ClientCABuffers | |||
) |
Definition at line 4376 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ClientCAList | |||
) |
Definition at line 1570 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ClientHello | |||
) |
Definition at line 3075 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
CopyWithoutEarlyData | |||
) |
Definition at line 7520 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
CurveRules | |||
) |
Definition at line 591 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
CustomVerify | |||
) |
Definition at line 4329 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
DefaultVersion | |||
) |
Definition at line 893 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
EarlyCallbackVersionSwitch | |||
) |
Definition at line 3625 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ECHBuiltinVerifier | |||
) |
Definition at line 2159 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ECHClientRandomsMatch | |||
) |
Definition at line 1965 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ECHHasDuplicateConfigID | |||
) |
Definition at line 1799 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ECHKeyConsistency | |||
) |
Definition at line 1832 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ECHPadding | |||
) |
Definition at line 2046 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ECHPublicName | |||
) |
Definition at line 2095 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ECHServerConfigsWithoutRetryConfigs | |||
) |
Definition at line 1880 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
EmptyCipherList | |||
) |
Definition at line 4440 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
EnumTypes | |||
) |
Definition at line 7165 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
GetCertificate | |||
) |
Definition at line 4208 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
Handoff | |||
) |
Definition at line 5129 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
HandoffDeclined | |||
) |
Definition at line 5238 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
InternalSessionCache | |||
) |
Definition at line 2419 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
KeyUsageWithUIDs | |||
) |
Definition at line 7732 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
MarshalECHConfig | |||
) |
Definition at line 1727 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
NoCiphersAvailable | |||
) |
Definition at line 4914 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
Padding | |||
) |
Definition at line 1135 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
PermuteExtensions | |||
) |
Definition at line 7952 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ProcessTLS13NewSessionTicket | |||
) |
Definition at line 7567 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SealRecord | |||
) |
Definition at line 4762 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SealRecordInPlace | |||
) |
Definition at line 4798 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SealRecordInvalidSpanSize | |||
) |
Definition at line 4861 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SealRecordTrailingData | |||
) |
Definition at line 4829 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SelectNextProto | |||
) |
Definition at line 4719 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SessionDuplication | |||
) |
Definition at line 2824 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SessionEncoding | |||
) |
Definition at line 812 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SetBIO | |||
) |
Definition at line 2929 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SetChainAndKey | |||
) |
Definition at line 4264 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SetChainAndKeyMismatch | |||
) |
Definition at line 4246 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SetFD | |||
) |
Definition at line 2866 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SetVersion | |||
) |
Definition at line 3650 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ShutdownIgnoresTickets | |||
) |
Definition at line 5009 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SigAlgs | |||
) |
Definition at line 5318 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SigAlgsList | |||
) |
Definition at line 5361 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
SignatureAlgorithmProperties | |||
) |
Definition at line 5034 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
UnsupportedECHConfig | |||
) |
Definition at line 1909 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
WriteAfterWrongVersionOnEarlyData | |||
) |
Definition at line 2759 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
WriteWhileExplicitRenegotiate | |||
) |
Definition at line 7392 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | SSLTest | , |
ZeroSizedWiteFlushesHandshakeMessages | |||
) |
Definition at line 5493 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | TrustTokenTest | , |
HExp1 | |||
) |
Definition at line 84 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | TrustTokenTest | , |
HExp2 | |||
) |
Definition at line 106 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | TrustTokenTest | , |
KeyGenExp1 | |||
) |
Definition at line 47 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | TrustTokenTest | , |
KeyGenExp2PMB | |||
) |
Definition at line 71 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST | ( | TrustTokenTest | , |
KeyGenExp2VOPRF | |||
) |
Definition at line 59 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
Async | |||
) |
Definition at line 6657 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
BadPostHandshake | |||
) |
Definition at line 6872 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
Basic | |||
) |
Definition at line 6272 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
Buffered | |||
) |
Definition at line 6706 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
ClientRejectsMissingTransportParams | |||
) |
Definition at line 7040 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
ExcessProvidedData | |||
) |
Definition at line 6757 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
ForbidCrossProtocolResumptionClient | |||
) |
Definition at line 6946 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
ForbidCrossProtocolResumptionServer | |||
) |
Definition at line 6987 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
HalfRTTKeys | |||
) |
Definition at line 6350 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
HelloRetryRequest | |||
) |
Definition at line 6308 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
NoLegacySessionId | |||
) |
Definition at line 6329 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
NoZeroRTTKeysBeforeReverify | |||
) |
Definition at line 6612 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
NoZeroRTTTicketWithoutEarlyDataContext | |||
) |
Definition at line 6525 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
ProvideWrongLevel | |||
) |
Definition at line 6812 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
QuicCodePointDefault | |||
) |
Definition at line 7139 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
QuicLegacyCodepointClientOnly | |||
) |
Definition at line 7100 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
QuicLegacyCodepointDisabled | |||
) |
Definition at line 7080 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
QuicLegacyCodepointEnabled | |||
) |
Definition at line 7060 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
QuicLegacyCodepointServerOnly | |||
) |
Definition at line 7118 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
ServerRejectsMissingTransportParams | |||
) |
Definition at line 7050 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
SetTransportParameters | |||
) |
Definition at line 6906 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
SetTransportParamsInCallback | |||
) |
Definition at line 6924 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
TooMuchData | |||
) |
Definition at line 6852 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
ZeroRTTAccept | |||
) |
Definition at line 6378 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
ZeroRTTReject | |||
) |
Definition at line 6540 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_F | ( | QUICMethodTest | , |
ZeroRTTRejectMismatchedParameters | |||
) |
Definition at line 6463 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
ALPNCipherAvailable | |||
) |
Definition at line 3754 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
AutoChain | |||
) |
Definition at line 3842 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
ClientSessionCacheMode | |||
) |
Definition at line 4106 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
DefaultTicketKeyInitialization | |||
) |
Definition at line 3495 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
DefaultTicketKeyRotation | |||
) |
Definition at line 3503 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
DifferentKeyNoResume | |||
) |
Definition at line 7296 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
DoubleSSLError | |||
) |
Definition at line 7170 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
FakeIDsForTickets | |||
) |
Definition at line 5542 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
GetPeerCertificate | |||
) |
Definition at line 2986 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
GetServerName | |||
) |
Definition at line 4070 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
NoPeerCertificate | |||
) |
Definition at line 3021 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
OneSidedShutdown | |||
) |
Definition at line 2585 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
RecordCallback | |||
) |
Definition at line 4014 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
RetainOnlySHA256OfCerts | |||
) |
Definition at line 3034 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
SameKeyResume | |||
) |
Definition at line 7259 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
SequenceNumber | |||
) |
Definition at line 2546 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
SessionIDContext | |||
) |
Definition at line 3233 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
SessionTimeout | |||
) |
Definition at line 3367 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
SessionVersion | |||
) |
Definition at line 4942 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
SmallBuffer | |||
) |
Definition at line 4121 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
SNICallback | |||
) |
Definition at line 3573 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
SSLClearFailsWithShedding | |||
) |
Definition at line 3808 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
SSLClearSessionResumption | |||
) |
Definition at line 3783 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
SSLPending | |||
) |
Definition at line 4962 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
SSLWriteRetry | |||
) |
Definition at line 3916 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
TicketSessionIDsMatch | |||
) |
Definition at line 7371 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
UnrelatedServerNoResume | |||
) |
Definition at line 7334 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
VerifyBeforeCertRequest | |||
) |
Definition at line 5517 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
Version | |||
) |
Definition at line 3732 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
WriteAfterHandshakeSentFatalAlert | |||
) |
Definition at line 2691 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
WriteAfterReadSentFatalAlert | |||
) |
Definition at line 2646 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | SSLVersionTest | , |
WriteAfterShutdown | |||
) |
Definition at line 2614 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TicketAEADMethodTest | , |
Resume | |||
) |
Definition at line 4609 of file ssl_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenBadKeyTest | , |
BadKey | |||
) |
Definition at line 835 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenMetadataTest | , |
ExcessDataProof | |||
) |
Definition at line 751 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenMetadataTest | , |
RawSetAndGetMetadata | |||
) |
Definition at line 608 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenMetadataTest | , |
SetAndGetMetadata | |||
) |
Definition at line 476 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenMetadataTest | , |
TooManyRequests | |||
) |
Definition at line 660 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenMetadataTest | , |
TruncatedProof | |||
) |
Definition at line 688 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenProtocolTest | , |
ExtraDataIssuanceResponse | |||
) |
Definition at line 282 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenProtocolTest | , |
InvalidToken | |||
) |
Definition at line 203 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenProtocolTest | , |
IssuedWithBadKeyID | |||
) |
Definition at line 405 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenProtocolTest | , |
TruncatedIssuanceRequest | |||
) |
Definition at line 243 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenProtocolTest | , |
TruncatedIssuanceResponse | |||
) |
Definition at line 260 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenProtocolTest | , |
TruncatedRedemptionRequest | |||
) |
Definition at line 306 of file trust_token_test.cc.
BSSL_NAMESPACE_BEGIN::TEST_P | ( | TrustTokenProtocolTest | , |
TruncatedRedemptionResponse | |||
) |
Definition at line 347 of file trust_token_test.cc.
|
static |
Definition at line 30 of file boringssl-with-bazel/src/ssl/span_test.cc.
Definition at line 25 of file boringssl-with-bazel/src/ssl/span_test.cc.
std::string BSSL_NAMESPACE_BEGIN::TicketAEADMethodParamToString | ( | const testing::TestParamInfo< TicketAEADMethodParam > & | params | ) |
Definition at line 4675 of file ssl_test.cc.
|
static |
Definition at line 2984 of file ssl_test.cc.
|
static |
Definition at line 1337 of file ssl_test.cc.
|
static |
Definition at line 5059 of file ssl_test.cc.
|
static |
Definition at line 5072 of file ssl_test.cc.
|
static |
Definition at line 3291 of file ssl_test.cc.
|
static |
Definition at line 1536 of file ssl_test.cc.
|
static |
Definition at line 4488 of file ssl_test.cc.
|
static |
Definition at line 4487 of file ssl_test.cc.
|
static |
Definition at line 82 of file ssl_test.cc.
|
static |
Definition at line 426 of file ssl_test.cc.
|
static |
Definition at line 356 of file ssl_test.cc.
|
static |
Definition at line 761 of file ssl_test.cc.
|
static |
Definition at line 785 of file ssl_test.cc.
|
static |
Definition at line 773 of file ssl_test.cc.
|
static |
Definition at line 662 of file ssl_test.cc.
|
static |
Definition at line 132 of file ssl_test.cc.
Definition at line 396 of file ssl_test.cc.
|
static |
Definition at line 651 of file ssl_test.cc.
|
static |
Definition at line 383 of file ssl_test.cc.
CONSTEXPR_ARRAY NamedGroup BSSL_NAMESPACE_BEGIN::kNamedGroups[] |
Definition at line 293 of file ssl_key_share.cc.
|
constexpr |
Definition at line 5795 of file ssl_test.cc.
|
static |
Definition at line 615 of file ssl_test.cc.
|
static |
Definition at line 4559 of file ssl_test.cc.
Definition at line 2477 of file ssl_test.cc.
|
static |
Definition at line 80 of file ssl_test.cc.