Skip to content

danbev/learning-crypto

Folders and files

NameName
Last commit message
Last commit date

Latest commit

834ab3f · Nov 15, 2024
Nov 15, 2024
Jan 11, 2023
Nov 24, 2022
Oct 8, 2022
Apr 25, 2023
Mar 17, 2023
Dec 14, 2022
Aug 21, 2023
Oct 12, 2022
Apr 6, 2023
Apr 6, 2023
Jan 29, 2023
Mar 13, 2023
Jan 17, 2023
Mar 27, 2022
Apr 4, 2022
Mar 30, 2022
Oct 28, 2022

Repository files navigation

Cryptography notes and code

This repository contains notes and code for learning about various things related to cryptography. Notes are available in the notes directory and I'll try have one file for each topic.

Cryptopals challenges

This following are links to cryptopals crypto challenges.

Set 1:

Example of building and running:

$ make out/challenge_01

All binary files are located in the outdirectory. The challenge can then be run using:

$ ./out/challenge_01
Cryptopals Set 1, Challenge 1 hex to base64 conversion
Input:     49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d
Expected : SSdtIGtpbGxpbmcgeW91ciBicmFpbiBsaWtlIGEgcG9pc29ub3VzIG11c2hyb29t
Actual   : SSdtIGtpbGxpbmcgeW91ciBicmFpbiBsaWtlIGEgcG9pc29ub3VzIG11c2hyb29t

This works in the same way for all challenges.

Frequency distribution generator

Frequency distribution generator