0

我使用 scrypt.js 进行密码加密,在 IE8(显然 IE9 也是)中给出:

Int32Array is undefined

我已经用谷歌搜索了,这只是 ie8 和 ie9 完全不支持,我应该怀疑有什么方法可以在 ie8 中为 javascript 添加 Int32Array 支持?任何线索表示赞赏。

4

1 回答 1

0
if(typeof(Int32Array) == "undefined")
{
    Int32Array = function(size)
    {
        if(size < 0 || Math.floor(size) != size) { throw "Invalid array length"; } 
        for(var index = 0; index < size; index++) { this[index] = 0; }
        this.length = size;
    };
    Int32Array.prototype = new Array();
}
于 2014-01-26T22:26:25.817 回答