Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ Table of content:
- [Meta](#meta)
- [Contributing](#contributing)

![](/public/img/crypto-helper.png)
![](/public/img/jwt.png)
![](/public/img/asn1.png)
![](/public/img/diff.png)
| ![](/public/img/crypto-helper.png) | ![](/public/img/jwt.png) |
|-|-|
| ![](/public/img/asn1.png) | ![](/public/img/diff.png) |

The crypto-helper is a web app that helps to work with the different crypto algorithms. This app can hash/hmac, encrypt/decrypt, and sign/verify the data, debug JWT tokens, parse ASN1 structures, compute diffs, and more.

Expand All @@ -30,6 +29,7 @@ All computations are performed on the client side. _This tool never sends the da
* `Argon2`
* `BCRYPT`
* `SHA1`/`SHA256`/`SHA384`/`SHA512`
* `HMAC-SHA256`/`HMAC-SHA384`/`HMAC-SHA512`
* Kerberos ciphers: `AES128-CTS-HMAC-SHA1-96`/`AES256-CTS-HMAC-SHA1-96`
* Kerberos HMAC: `HMAC-SHA1-96-AES128`/`HMAC-SHA1-96-AES256`
* `RSA`
Expand Down
1 change: 1 addition & 0 deletions src/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ pub fn about() -> Html {
<li>{"BCrypt"}</li>
<li>{"MD5"}</li>
<li>{"SHA1/SHA256/SHA384/SHA512"}</li>
<li>{"HMAC-SHA256/HMAC-SHA384/HMAC-SHA512"}</li>
<li>{"Kerberos ciphers: AES128-CTS-HMAC-SHA1-96/AES256-CTS-HMAC-SHA1-96"}</li>
<li>{"Kerberos HMAC: HMAC-SHA1-96-AES128/HMAC-SHA1-96-AES256"}</li>
<li>{"RSA"}</li>
Expand Down
Loading