Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Commit

Permalink
Release 0.3.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Jul 3, 2022
1 parent 6735c23 commit 7fb2c89
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,9 @@ export declare const utils: {
hexToBytes: typeof hexToBytes;
concatBytes: typeof concatBytes;
};
export {};
declare const aes: {
encrypt: typeof encrypt;
decrypt: typeof decrypt;
};
export default aes;
//# sourceMappingURL=index.d.ts.map
2 changes: 1 addition & 1 deletion index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,5 @@ export const utils = {
hexToBytes,
concatBytes,
};
const aes = { encrypt, decrypt };
export default aes;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "micro-aes-gcm",
"version": "0.3.2",
"version": "0.3.3",
"description": "Simple 0-dep wrapper over node.js/browser AES-GCM.",
"main": "index.js",
"module": "index.js",
Expand Down

0 comments on commit 7fb2c89

Please sign in to comment.