Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/varun-doshi/rust-cryptography
https://github.com/varun-doshi/rust-cryptography
Last synced: about 16 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/varun-doshi/rust-cryptography
- Owner: varun-doshi
- Created: 2024-03-26T19:13:28.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-29T18:10:21.000Z (8 months ago)
- Last Synced: 2024-03-29T20:58:51.119Z (8 months ago)
- Language: Rust
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cryptography using Rust
## Work in Progress
### This repo contains implementations of cryptographic functions using Rust.
##### Note: Currently, not focused on creating the cryptographic functions themselves, but on understanding how these work. In due course, may contain creating the functions froms scratch
## Content
* [BLS Signature Verification](./src/bls.rs)
* [BLS Signature Aggregation](./src/bls_aggregation.rs)
* [Substitution Cipher](./src/bin/substitution_cypher.rs)## How to run
Clone the repository using
```
git clone
```
Install the crates
```
cargo build
```
Run the tests
```
cargo test
```## Contribution
If you would like to add some functions, feel free to clone,add and raise a PR. This repository is open for contributions.