Skip to content

Commit

Permalink
0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jun 4, 2023
1 parent ed463e1 commit 5d4e8ef
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.2

- Bug fix

## 0.0.1

- Initial version
2 changes: 1 addition & 1 deletion dist/lib/encrypt.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nowplayingcards/common",
"version": "0.0.1",
"version": "0.0.2",
"type": "module",
"description": "Now Playing Cards common scripts",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions src/lib/encrypt.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Buffer } from "node:buffer";

export default async (data: unknown, key: string) => {
const iv = crypto.getRandomValues(new Uint8Array(12));

Expand Down

0 comments on commit 5d4e8ef

Please sign in to comment.