@stablelib/aes
Advanced tools
Comparing version 2.0.0 to 2.0.1
// Copyright (C) 2016 Dmitry Chestnykh | ||
// MIT License. See LICENSE file for details. | ||
import { AES } from "./aes"; | ||
import { AES } from "./aes.js"; | ||
import { benchmark, report, byteSeq } from "@stablelib/benchmark"; | ||
@@ -6,0 +6,0 @@ |
// Copyright (C) 2016 Dmitry Chestnykh | ||
// MIT License. See LICENSE file for details. | ||
import { describe, expect, it } from 'vitest'; | ||
import { AES } from "./aes"; | ||
import { AES } from "./aes.js"; | ||
import { encode, decode } from "@stablelib/hex"; | ||
@@ -6,0 +6,0 @@ |
// Copyright (C) 2016 Dmitry Chestnykh | ||
// MIT License. See LICENSE file for details. | ||
import { AES } from "./aes"; | ||
import { AES } from "./aes.js"; | ||
import { benchmark, report, byteSeq } from "@stablelib/benchmark"; | ||
@@ -5,0 +5,0 @@ const key = byteSeq(32); |
// Copyright (C) 2016 Dmitry Chestnykh | ||
// MIT License. See LICENSE file for details. | ||
import { describe, expect, it } from 'vitest'; | ||
import { AES } from "./aes"; | ||
import { AES } from "./aes.js"; | ||
import { encode, decode } from "@stablelib/hex"; | ||
@@ -6,0 +6,0 @@ // TODO(dchest): add more AES test vectors. |
{ | ||
"name": "@stablelib/aes", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "AES block cipher (Advanced Encryption Standard)", | ||
@@ -23,11 +23,11 @@ "main": "./lib/aes.js", | ||
"dependencies": { | ||
"@stablelib/binary": "^2.0.0", | ||
"@stablelib/binary": "^2.0.1", | ||
"@stablelib/blockcipher": "^2.0.0", | ||
"@stablelib/wipe": "^2.0.0" | ||
"@stablelib/wipe": "^2.0.1" | ||
}, | ||
"devDependencies": { | ||
"@stablelib/benchmark": "^2.0.0", | ||
"@stablelib/hex": "^2.0.0" | ||
"@stablelib/hex": "^2.0.1" | ||
}, | ||
"gitHead": "ecfe9109b3c05419fd3ffc16da6c8255b08ad64f" | ||
"gitHead": "99bee56f6af6211d037c35e3eef749f3c1e84502" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69189
Updated@stablelib/binary@^2.0.1
Updated@stablelib/wipe@^2.0.1