jscrypto icon indicating copy to clipboard operation
jscrypto copied to clipboard

Crypto library for Node/ES6/Typescript/Browser.

Results 5 jscrypto issues
Sort by recently updated
recently updated
newest added

I know you're probably not working on this anymore, but I'm hoping you'll at least see this message and might have an idea where I can look. I'm trying to...

Without this, more strict bundlers and Node's ESM mode won't be able to import the es6 build of jscrypto. e.g. From vitest: ``` SyntaxError: Cannot use import statement outside a...

While decryption am getting the half of the encrypted data only... compared to the .NET BouncyCastle GCM encryption... In BouncyCastle am getting encrypted data having length 32 whereas in the...

Javascript code var salt = JsCrypto.Utf8.parse("abcd"); var iv = JsCrypto.Utf8.parse("DuWObJpjGijl6mxB"); var password = "0Usd2xqrLnjXJjcMKFb2T6SrWTag8FSXzAIfnHCIY24=" var plainText = "test"; var keySize = 256; var iterations = 1; var options = {...

Is JsCrypto.Word32Array.random(8) same as crypto.randomBytes(8).toString("hex") in terms of cryptographically strong random generation?