Skip to content

Commit

Permalink
added browser tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brainfoolong committed Aug 15, 2024
1 parent 9d877d9 commit 752d43e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-browser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: npm install -y

- name: Start testserver
run: node tests/test-browser-server.js
run: node tests/test-browser-server.js &

- name: Install Playwright Browsers
run: npx playwright install --with-deps
Expand Down
6 changes: 4 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
*
!dist/*
!src/*
!CHANGELOG.md
!src/ts/*
!README.md
!LICENSE
!package.json
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,10 @@ library: https://stackoverflow.com/questions/16600708/how-do-you-encrypt-and-dec
### Alternatives - ASCON

You may wonder if there are alternatives to AES encryption that you can use in PHP/JS. ASCON is a newer, lightweight cipher that have been selected in 2023 by the [NIST](https://csrc.nist.gov/projects/lightweight-cryptography) as the new standard for lightweight cryptography, which may suite your needs. I have created libraries for both PHP and JS which you can find at https://github.com/brainfoolong/php-ascon and https://github.com/brainfoolong/js-ascon


### Changelog

#### 1.0.1 - 2024-08-14

Initial Public Release

0 comments on commit 752d43e

Please sign in to comment.