Skip to content

Commit 15785bf

Browse files
Update README.md
1 parent 814d167 commit 15785bf

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ Table of content:
1414
- [Meta](#meta)
1515
- [Contributing](#contributing)
1616

17-
![](/public/img/crypto-helper.png)
18-
![](/public/img/jwt.png)
19-
![](/public/img/asn1.png)
20-
![](/public/img/diff.png)
17+
| ![](/public/img/crypto-helper.png) | ![](/public/img/jwt.png) |
18+
|-|-|
19+
| ![](/public/img/asn1.png) | ![](/public/img/diff.png) |
2120

2221
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.
2322

@@ -30,6 +29,7 @@ All computations are performed on the client side. _This tool never sends the da
3029
* `Argon2`
3130
* `BCRYPT`
3231
* `SHA1`/`SHA256`/`SHA384`/`SHA512`
32+
* `HMAC-SHA256`/`HMAC-SHA384`/`HMAC-SHA512`
3333
* Kerberos ciphers: `AES128-CTS-HMAC-SHA1-96`/`AES256-CTS-HMAC-SHA1-96`
3434
* Kerberos HMAC: `HMAC-SHA1-96-AES128`/`HMAC-SHA1-96-AES256`
3535
* `RSA`

src/about.rs

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ pub fn about() -> Html {
1111
<li>{"BCrypt"}</li>
1212
<li>{"MD5"}</li>
1313
<li>{"SHA1/SHA256/SHA384/SHA512"}</li>
14+
<li>{"HMAC-SHA256/HMAC-SHA384/HMAC-SHA512"}</li>
1415
<li>{"Kerberos ciphers: AES128-CTS-HMAC-SHA1-96/AES256-CTS-HMAC-SHA1-96"}</li>
1516
<li>{"Kerberos HMAC: HMAC-SHA1-96-AES128/HMAC-SHA1-96-AES256"}</li>
1617
<li>{"RSA"}</li>

0 commit comments

Comments
 (0)