Skip to content

My solutions for http://cryptopals.com, written entirely in Go, sprinkled with concurrency

Notifications You must be signed in to change notification settings

mfridman/cryptopals

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

crypto challenges made fun

Chipping away at em', work in progress...

Indeed there is overlap between the challenges and one could build a standard lib. But, instead, I wanted each challenge to be its own contained unit.

Usage

go get -u github.com/mfridman/cryptopals/...

# assuming you are in your GOPATH
cd src/github.com/mfridman/cryptopals/set-1/chal-6
go run main.go

Set 1: Basics

Misc

func factorial(n uint64) uint64 {
    if n > 0 {
        result := n * factorial(n-1)
        return result
    }
    return 1
}

About

My solutions for http://cryptopals.com, written entirely in Go, sprinkled with concurrency

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages