diff --git a/test/std/resources.hxml b/test/std/resources.hxml index dec791f8e..3d8350b04 100644 --- a/test/std/resources.hxml +++ b/test/std/resources.hxml @@ -4,7 +4,7 @@ -r resources/pkcs1/public.key@pkcs1_public_key -r resources/pkcs1/private.key@pkcs1_private_key --r resources/pkcs1/private_aes.key@pkcs1_private_aes_key +-r resources/pkcs1/private_aes.key@pkcs1_aes_private_key -r resources/certs/rootkey.pem@rootkey -r resources/certs/rootcert.pem@rootcert diff --git a/test/std/ssl/TestPKCS1.hx b/test/std/ssl/TestPKCS1.hx index 6acb45469..13ce0e568 100644 --- a/test/std/ssl/TestPKCS1.hx +++ b/test/std/ssl/TestPKCS1.hx @@ -18,8 +18,4 @@ class TestPKCS1 extends Test { function testAesEncryptedPrivateKey() { Assert.notNull(Key.readPEM(Resource.getString('pkcs1_aes_private_key'), false, 'password')); } - - function testTripleDesPrivateKey() { - Assert.notNull(Key.readPEM(Resource.getString('pkcs1_private_3des_key'), false, 'password')); - } }