本文介绍了无法获得属性“bitlength”未定义或空引用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在RSA.min.js中收到此错误



由于RSAEncrypt(d)函数中的这一行,我收到此错误



var a = pkcs1pad2(d,(this.n.bitLength()+ 7)>> 3);



如果我不能得到this.n的空值然后我会得到这个错误,但我的问题是,当我不会得到这个.n的空值。



请帮忙。



谢谢!



我的尝试:



我谷歌很多,但我没有找到任何帮助。

I am getting this error in RSA.min.js.

I am getting this error because of this line in RSAEncrypt(d) function

var a = pkcs1pad2(d, (this.n.bitLength() + 7) >> 3);

If i will not get the null value of this.n then i will get this error, but my question is that when i will not get this.n's null value.

Please help.

Thanks!

What I have tried:

I google it to much but i did not find anything helpful.

推荐答案



这篇关于无法获得属性“bitlength”未定义或空引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 12:07