diff --git a/shadowsocks/crypto/openssl.py b/shadowsocks/crypto/openssl.py index f56e690..50cdc22 100644 --- a/shadowsocks/crypto/openssl.py +++ b/shadowsocks/crypto/openssl.py @@ -331,7 +331,7 @@ def test_aes_gcm(bits=128): def test_aes_256_gcm(): - run_aead_method('aes-256-gcm') + test_aes_gcm(256) def test_aes_256_cfb(): @@ -363,3 +363,4 @@ if __name__ == '__main__': test_aes_gcm(128) test_aes_gcm(192) test_aes_gcm(256) + test_aes_256_gcm()