mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
crypto/tls: add TLS_RSA_WITH_AES_128_GCM_SHA256 and TLS_RSA_WITH_AES_256_GCM_SHA384 cipher suites
Fixes #9894. Change-Id: I9c7ce771df2e2d1c99a06f800dce63c4e1875993 Reviewed-on: https://go-review.googlesource.com/16924 Run-TryBot: Minux Ma <minux@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Adam Langley <agl@golang.org>
This commit is contained in:
parent
b324d1ea77
commit
14661a3d39
56 changed files with 2580 additions and 2471 deletions
|
@ -297,6 +297,22 @@ func TestHandshakeClientRSARC4(t *testing.T) {
|
|||
runClientTestTLS12(t, test)
|
||||
}
|
||||
|
||||
func TestHandshakeClientRSAAES128GCM(t *testing.T) {
|
||||
test := &clientTest{
|
||||
name: "AES128-GCM-SHA256",
|
||||
command: []string{"openssl", "s_server", "-cipher", "AES128-GCM-SHA256"},
|
||||
}
|
||||
runClientTestTLS12(t, test)
|
||||
}
|
||||
|
||||
func TestHandshakeClientRSAAES256GCM(t *testing.T) {
|
||||
test := &clientTest{
|
||||
name: "AES256-GCM-SHA384",
|
||||
command: []string{"openssl", "s_server", "-cipher", "AES256-GCM-SHA384"},
|
||||
}
|
||||
runClientTestTLS12(t, test)
|
||||
}
|
||||
|
||||
func TestHandshakeClientECDHERSAAES(t *testing.T) {
|
||||
test := &clientTest{
|
||||
name: "ECDHE-RSA-AES",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue