You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using node-sshpk Library to sign data with openssh 8.0 generated private key. I have directly imported it in react code. As I have checked it's using browserify-rsa, which has as a dependency bn.js. So I have also checked that, after passing same data to:
return new Buffer(m2.imul(blinds.unblinder).umod(priv.modulus).toArray(false, len));
.umod always returns data randomly it's always different.
Problem occurs only on openssh 8.0 generated private key. keys generated with older version of openssh works as expected.
The text was updated successfully, but these errors were encountered:
I'm using node-sshpk Library to sign data with openssh 8.0 generated private key. I have directly imported it in react code. As I have checked it's using browserify-rsa, which has as a dependency bn.js. So I have also checked that, after passing same data to:
return new Buffer(m2.imul(blinds.unblinder).umod(priv.modulus).toArray(false, len));
.umod always returns data randomly it's always different.
Problem occurs only on openssh 8.0 generated private key. keys generated with older version of openssh works as expected.
The text was updated successfully, but these errors were encountered: