An open API service indexing awesome lists of open source software.

https://github.com/moisutsu/rsa

RustによるRSA暗号の実装
https://github.com/moisutsu/rsa

rsa rust

Last synced: 5 days ago
JSON representation

RustによるRSA暗号の実装

Awesome Lists containing this project

README

          

# How to use

Input

```bash
cargo run -- --p 4133 --q 5987 --plaintext 19800101
```

Output
```
Plaintext = 19800101
p = 4133, q = 5987
EncryptionKey = (e: 3, n: 24744271)
DecryptionKey = (d: 16489435, n: 24744271)
Cryptogram = 13325250
DecryptedText = 19800101
```