diff options
author | Ingela Anderton Andin <[email protected]> | 2017-08-08 16:58:49 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2017-08-08 16:58:49 +0200 |
commit | 5c6784f960b84a7a47a54260627ae7996a5b12dc (patch) | |
tree | 27ab9c41fa68132ac959a9b4873511b0bb894ff3 /lib/ssl/test/ssl_test_lib.erl | |
parent | 7b331f5c369a2122d5313dbc42e1f23e63f14460 (diff) | |
download | otp-5c6784f960b84a7a47a54260627ae7996a5b12dc.tar.gz otp-5c6784f960b84a7a47a54260627ae7996a5b12dc.tar.bz2 otp-5c6784f960b84a7a47a54260627ae7996a5b12dc.zip |
ssl: Clean
This code was not used and we already have mixed chains ECDH_RSA tests
Diffstat (limited to 'lib/ssl/test/ssl_test_lib.erl')
-rw-r--r-- | lib/ssl/test/ssl_test_lib.erl | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/ssl/test/ssl_test_lib.erl b/lib/ssl/test/ssl_test_lib.erl index 0b44108930..0e85ca9cf1 100644 --- a/lib/ssl/test/ssl_test_lib.erl +++ b/lib/ssl/test/ssl_test_lib.erl @@ -628,23 +628,6 @@ make_ecdh_rsa_cert(Config) -> Config end. -make_mix_cert(Config) -> - {ServerCaCertFile, ServerCertFile, ServerKeyFile} = make_cert_files("server", Config, dsa, - rsa, "mix", []), - {ClientCaCertFile, ClientCertFile, ClientKeyFile} = make_cert_files("client", Config, dsa, - rsa, "mix", []), - [{server_mix_opts, [{ssl_imp, new},{reuseaddr, true}, - {cacertfile, ServerCaCertFile}, - {certfile, ServerCertFile}, {keyfile, ServerKeyFile}]}, - {server_mix_verify_opts, [{ssl_imp, new},{reuseaddr, true}, - {cacertfile, ClientCaCertFile}, - {certfile, ServerCertFile}, {keyfile, ServerKeyFile}, - {verify, verify_peer}]}, - {client_mix_opts, [{ssl_imp, new}, - {cacertfile, ClientCaCertFile}, - {certfile, ClientCertFile}, {keyfile, ClientKeyFile}]} - | Config]. - make_cert_files(RoleStr, Config, Alg1, Alg2, Prefix, Opts) -> Alg1Str = atom_to_list(Alg1), Alg2Str = atom_to_list(Alg2), |