Skip to content

benpence/matasano

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 

Repository files navigation

Go implementation of the Matasano Crypto Challenges (http://cryptopals.com)

Source

The source in src/matasano is organized as follows:

  • bits/ general bit-operation
  • encoding/ base64 and hex encoding and decoding
  • xorbyte/ encrypting and forcibly decrypting message blocks XOR'd by the same byte
  • repeatingxor/ encrypting and forcibly decrypting message blocks XOR'd by a bytestring
  • aes/ encrypting with AES and detecting AES
  • problems/ matasano-specific problem numbers

Testing

Each problem solution is organized into a go testing function in src/matasano/problems/. To run all the tests, execute:

$ GOPATH="`pwd`:$GOPATH" go test matasano/problems

To examine the tests for a particular problem, please read the respective src/matasano/problems/NUMBER_test.go file.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages