summaryrefslogtreecommitdiffstats
path: root/lib/str.go
Commit message (Collapse)AuthorAgeFilesLines
* lib: AlphaScore -> AlphaPunchScorersiddharth2020-09-061-1/+1
| | | | | * lib/str.go (AlphaScore): Rename to... (AlphaPunchScore): ...this.
* lib: isAlpha -> isAlphaPunchrsiddharth2020-09-061-2/+3
| | | | | | * lib/str.go (isAlpha): Rename to... (isAlphaPunch): ...this. (AlphaScore): change isAlpha call to isAlphaPunch call.
* lib: update isAlpharsiddharth2020-09-061-0/+6
| | | | * lib/str.go (isAlpha): Add common punctuation.
* lib: add FillBytesrsiddharth2020-09-061-0/+11
| | | | * lib/str.go (FillBytes): New function.
* lib: add AlphaScorersiddharth2020-09-051-0/+10
| | | | * lib/str.go (AlphaScore): New function.
* lib: add isAlpharsiddharth2020-09-051-0/+10
| | | | * lib/str.go (isAlpha): New function.
* lib: move around stripSpaceCharsrsiddharth2020-09-051-0/+15
| | | | | * lib/b64.go (stripSpaceChars): Move to... * lib/str.go (stripSpaceChars): ...here.
* challenge: do challenge 3rsiddharth2020-08-291-0/+15
* challenge/c03.go: Implement challenge 3 * cryptopals.go (main): Add handling to run challenge 3 * lib/brute.go (XORCrackSingleKey): New function. * lib/hex.go (HexStrToAsciiStr, ByteToHexStr): New functions. * lib/str.go (FillStr): New function.