Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme.md #79

Merged
merged 4 commits into from
Aug 25, 2024
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
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@ Table of content:
- [Meta](#meta)
- [Contributing](#contributing)

![](/public/img/example.png)
![](/public/img/sha.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.
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.

All computations are performed on the client side. This tool never sends the data to any server.
All computations are performed on the client side. _This tool never sends the data to any server._

### Features

Expand All @@ -44,6 +45,10 @@ All computations are performed on the client side. This tool never sends the dat
* `ES256`
* `ES384`
* `ES512`
* ASN1 Debugger
* Diff checker

Read more about features and motivation here: https://tbt.qkation.com/projects/crypto-helper.

### Development

Expand Down
Binary file added public/img/asn1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/crypto-helper.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/diff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/img/example.png
Binary file not shown.
Binary file modified public/img/jwt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/img/sha.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/asn1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ pub fn asn1_parser_page() -> Html {
<div class={classes!("vertical", "asn1-page")} {onkeydown}>
<span>
<a href="https://github.com/TheBestTvarynka/crypto-helper/tree/main/crates/asn1-parser#supported-asn1-types" class="a-link">
{"list of supported asn1 types"}
{"List of supported asn1 types"}
</a>
{". Report a bug/feature "}<a href="https://github.com/TheBestTvarynka/crypto-helper/issues/new" class="a-link">{"here"}</a>{"."}
</span>
Expand Down