Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alicewriteswrongs/crypto_primitives
Implementations of a few random things (mostly for demonstration, not real crypto)
https://github.com/alicewriteswrongs/crypto_primitives
Last synced: 24 days ago
JSON representation
Implementations of a few random things (mostly for demonstration, not real crypto)
- Host: GitHub
- URL: https://github.com/alicewriteswrongs/crypto_primitives
- Owner: alicewriteswrongs
- Created: 2015-08-27T13:36:02.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-16T20:55:02.000Z (almost 8 years ago)
- Last Synced: 2024-10-30T07:26:52.676Z (2 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cryptography
A collection of small programs I wrote while learning about cryptography.
## Diffie-Hellman
Two things: a little Python program which shows how Alice and Bob
establish a shared secret whilst communicating over insecure channels
(really it's all happening in one function, soo)The other is another small program that uses the same Diffie-Hellman key
exchange function to encrypt and then decrypt a message using the DH
secret for repeating key XOR. Cool!## TODO
- RSA
- Diffie-Hellman messaging app!
- AES