summaryrefslogtreecommitdiff
path: root/test/parallel/test-crypto-key-objects.js
diff options
context:
space:
mode:
authorAlex Aubuchon <alex@aub.dev>2019-05-28 14:40:58 -0700
committerAli Ijaz Sheikh <ofrobots@google.com>2019-06-05 11:37:37 -0700
commitc4209729fbac9184308de3803463934d62228a23 (patch)
tree61c63cc6ed29bf81b77d5764fe3dc0b25bd2abc7 /test/parallel/test-crypto-key-objects.js
parentf5e6ac2bd9cfd55d156fdcaee4f73b2822f46a53 (diff)
downloadandroid-node-v8-c4209729fbac9184308de3803463934d62228a23.tar.gz
android-node-v8-c4209729fbac9184308de3803463934d62228a23.tar.bz2
android-node-v8-c4209729fbac9184308de3803463934d62228a23.zip
test: move ed448 keypairs to fixtures/keys/
PR-URL: https://github.com/nodejs/node/pull/27962 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'test/parallel/test-crypto-key-objects.js')
-rw-r--r--test/parallel/test-crypto-key-objects.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-crypto-key-objects.js b/test/parallel/test-crypto-key-objects.js
index 591d390456..12c3ba4ff1 100644
--- a/test/parallel/test-crypto-key-objects.js
+++ b/test/parallel/test-crypto-key-objects.js
@@ -206,8 +206,8 @@ const privateDsa = fixtures.readKey('dsa_private_encrypted_1025.pem',
{ private: fixtures.readKey('ed25519_private.pem', 'ascii'),
public: fixtures.readKey('ed25519_public.pem', 'ascii'),
keyType: 'ed25519' },
- { private: fixtures.readSync('test_ed448_privkey.pem', 'ascii'),
- public: fixtures.readSync('test_ed448_pubkey.pem', 'ascii'),
+ { private: fixtures.readKey('ed448_private.pem', 'ascii'),
+ public: fixtures.readKey('ed448_public.pem', 'ascii'),
keyType: 'ed448' },
{ private: fixtures.readKey('x25519_private.pem', 'ascii'),
public: fixtures.readKey('x25519_public.pem', 'ascii'),