From 51dbbe2090a72875d65242488a312575be0e16de Mon Sep 17 00:00:00 2001 From: Bart Butler Date: Fri, 22 May 2015 12:03:59 -0700 Subject: [PATCH] tanx update 2 --- src/crypto/public_key/rsa.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/public_key/rsa.js b/src/crypto/public_key/rsa.js index bf7ddbc3..b8e5518e 100644 --- a/src/crypto/public_key/rsa.js +++ b/src/crypto/public_key/rsa.js @@ -167,7 +167,7 @@ function RSA() { }; keys = webCrypto.generateKey(keyGenOpt, true, ['sign', 'verify']); - if(!(keys instanceof Promise)) { // IE11 KeyOperation + if (!(keys instanceof Promise)) { // IE11 KeyOperation keys = convertKeyOperation(keys, 'Error generating RSA key pair.'); } }