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
Random bytes in the PW_Encode.pad() are not allowed to be zero:
See JS_RSA.js:
// PKCS#1 (type 2, random) pad input string s to n bytes, and return a bigintfunctionpkcs1pad2(s,n){
...
while(n>2){// random non-zero padx[0]=0;while(x[0]==0)rng.nextBytes(x);ba[--n]=x[0];}
...
}
The text was updated successfully, but these errors were encountered:
uunicorn
added a commit
to uunicorn/snxvpn
that referenced
this issue
Dec 17, 2018
Random bytes in the PW_Encode.pad() are not allowed to be zero:
See JS_RSA.js:
The text was updated successfully, but these errors were encountered: