summaryrefslogtreecommitdiffstats
path: root/lib/b64.go
Commit message (Collapse)AuthorAgeFilesLines
* update name in copyrightsiddharth ravikumar2022-05-231-1/+1
| | | | Use full name.
* copyright: rsiddharth -> siddharthsiddharth2021-11-201-1/+1
|
* lib: stripSpaceChars -> StripSpaceCharsrsiddharth2021-01-301-1/+1
|
* lib: move around stripSpaceCharsrsiddharth2020-09-051-15/+0
| | | | | * lib/b64.go (stripSpaceChars): Move to... * lib/str.go (stripSpaceChars): ...here.
* lib: add Base64ToBytesrsiddharth2020-09-051-0/+32
| | | | | | * lib/b64.go (Base64ToBytes): New function. lib/b64.go
* lib: add indexrsiddharth2020-09-051-0/+10
| | | | * lib/b64.go (index): New function.
* lib: add stripSpaceCharsrsiddharth2020-09-051-0/+15
| | | | * lib/b64.go (stripSpaceChars): New function.
* lib: update HexToBase64rsiddharth2020-08-301-1/+1
| | | | | * lib/b64.go (HexToBase64): Use hex instead of base 2 for the second AND to get the last 6 bits.
* rename package enc -> hexrsiddharth2020-08-291-0/+24
* Makefile (fmt): fmt lib instead of enc * challenge/c01.go: Use lib instead of enc * challenge/c02.go: Use lib instead of enc * enc/b64.go -> lib/b64.go * enc/hex.go -> lib/hex.go * enc/xor.go -> lib/xor.go