Skip to content

Commit

Permalink
add twofish
Browse files Browse the repository at this point in the history
  • Loading branch information
bstnbuck committed Apr 22, 2024
1 parent 6776110 commit 871c444
Show file tree
Hide file tree
Showing 5 changed files with 432 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
cd v
make
- name: test algorithms
run: ./v/v test md4/ tea/ xtea/ _cipher/ salsa20/ ripemd160/
run: ./v/v test md4/ tea/ xtea/ _cipher/ salsa20/ ripemd160/ twofish/
2 changes: 1 addition & 1 deletion .github/workflows/win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
cd v
.\make.bat -tcc
- name: test algorithms
run: ./v/v test md4/ tea/ xtea/ _cipher/ salsa20/ ripemd160/
run: ./v/v test md4/ tea/ xtea/ _cipher/ salsa20/ ripemd160/ twofish/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The V wrapper libsodium [[Git](https://github.com/vlang/libsodium)] has some of
| **(X)Salsa20** | symmetric stream cipher | high | experimental :yellow_circle: [[Git](https://github.com/bstnbuck/V-crypto/tree/main/salsa20)] |
| **scrypt** | hash-algorithm / key derivation function | high | :x: |
| TEA, XTEA | legacy block cipher | low | experimental :yellow_circle: [[Git](https://github.com/bstnbuck/V-crypto/tree/main/tea)] [[Git](https://github.com/bstnbuck/V-crypto/tree/main/xtea)]|
| **Twofisch** | symmetric block cipher | moderate | :x: |
| **Twofisch** | symmetric block cipher | moderate | experimental :yellow_circle: [[Git](https://github.com/bstnbuck/V-crypto/tree/main/twofish)] |
| **yescrypt** | hash-algorithm / key derivation function | high | :x: |

> Last Update: 22-04-2024
Expand Down
Loading

0 comments on commit 871c444

Please sign in to comment.