Thanks to visit codestin.com
Credit goes to github.com

Skip to content

edgarkp/Diffie-Helman-Crypto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting started

The Diffie-Hellman key exchange is one of the earliest algorithms used to securely exchange cryptographic keys over a public channel . It allows encrypted communication between two parties that have no prior knowledge of each other to jointly establish a shared secret key over an insecure channel.

Secrecy chart :

secrecy_chart

Code organization:

.
├── README.md
├── Cargo.toml
├── src
│   ├── main
├── images
│   ├── secrecy_chart.PNG

The code runs with Rust / Cargo . For the moment, only unit tests are available

a) To run the tests

cargo test

b) To run the test for big primes

cargo test --features big-primes

References :

https://www.geeksforgeeks.org/implementation-diffie-hellman-algorithm/

(back to top)

About

A simple RUST implementation of the Diffie Helmann key exchange

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages