@@ -169,16 +169,16 @@ const privateDsa = fixtures.readKey('dsa_private_encrypted_1025.pem',
169169 assert . strictEqual ( derivedPublicKey . symmetricKeySize , undefined ) ;
170170
171171 const publicKeyFromJwk = createPublicKey ( { key : publicJwk , format : 'jwk' } ) ;
172- assert . strictEqual ( publicKey . type , 'public' ) ;
173- assert . strictEqual ( publicKey . toString ( ) , '[object KeyObject]' ) ;
174- assert . strictEqual ( publicKey . asymmetricKeyType , 'rsa' ) ;
175- assert . strictEqual ( publicKey . symmetricKeySize , undefined ) ;
172+ assert . strictEqual ( publicKeyFromJwk . type , 'public' ) ;
173+ assert . strictEqual ( publicKeyFromJwk . toString ( ) , '[object KeyObject]' ) ;
174+ assert . strictEqual ( publicKeyFromJwk . asymmetricKeyType , 'rsa' ) ;
175+ assert . strictEqual ( publicKeyFromJwk . symmetricKeySize , undefined ) ;
176176
177177 const privateKeyFromJwk = createPrivateKey ( { key : jwk , format : 'jwk' } ) ;
178- assert . strictEqual ( privateKey . type , 'private' ) ;
179- assert . strictEqual ( privateKey . toString ( ) , '[object KeyObject]' ) ;
180- assert . strictEqual ( privateKey . asymmetricKeyType , 'rsa' ) ;
181- assert . strictEqual ( privateKey . symmetricKeySize , undefined ) ;
178+ assert . strictEqual ( privateKeyFromJwk . type , 'private' ) ;
179+ assert . strictEqual ( privateKeyFromJwk . toString ( ) , '[object KeyObject]' ) ;
180+ assert . strictEqual ( privateKeyFromJwk . asymmetricKeyType , 'rsa' ) ;
181+ assert . strictEqual ( privateKeyFromJwk . symmetricKeySize , undefined ) ;
182182
183183 // It should also be possible to import an encrypted private key as a public
184184 // key.
0 commit comments