aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/base32/base32.odin
Commit message (Expand)AuthorAgeFilesLines
* Fix stray space vs. tabJeroen van Rijn2025-01-121-4/+4
* encoding/base32: Add `@(rodata)` attribute to default tablesZoltán Kéri2025-01-031-0/+2
* encoding/base32: Fix RFC 4648 references and add RFC reference URLZoltán Kéri2024-12-311-1/+6
* encoding/base32: Fix style issues for CIZoltán Kéri2024-12-311-5/+4
* encoding/base32: Convert files to UTF-8 with Unix line endingsZoltán Kéri2024-12-301-223/+224
* encoding/base32: Remove incorrect defer delete in encode()Zoltán Kéri2024-12-301-1/+0
* encoding/base32: Move tests to base32_test.odinZoltán Kéri2024-12-291-126/+0
* encoding/base32: Expand `DEC_TABLE` to full 256 bytesZoltán Kéri2024-12-261-13/+15
* encoding/base32: Use `ENC_TBL` parameter consistently in encode()Zoltán Kéri2024-12-261-9/+9
* encoding/base32: Add custom validation supportZoltán Kéri2024-12-251-5/+16
* encoding/base32: Replace padding map with switch statementZoltán Kéri2024-12-241-9/+11
* encoding/base32: Set optimization mode for decode()Zoltán Kéri2024-12-241-0/+1
* encoding/base32: Use consistent allocator and add proper cleanupZoltán Kéri2024-12-241-22/+43
* encoding/base32: Fix decode implementation per RFC 4648Zoltán Kéri2024-12-241-58/+79
* encoding/base32: Add RFC 4648 test suiteZoltán Kéri2024-12-241-0/+104
* encoding/base32: Fix buffer allocation and bounds checkingZoltán Kéri2024-12-241-6/+24
* encoding/base32: Replace assertions with error returnsZoltán Kéri2024-12-241-9/+31
* Indentation fixesgingerBill2024-06-291-116/+116
* Update numerous package declaration namesgingerBill2024-04-181-1/+1
* Remove unneeded semicolons from the core librarygingerBill2021-08-311-65/+65
* Make base32 and base64 adhere to `-strict-style`gingerBill2021-03-141-2/+2
* vet all core packagesgingerBill2021-01-091-1/+0
* Remove usage of `do` in core librarygingerBill2020-09-231-2/+6
* Add extra information to `-show-more-timings`gingerBill2020-05-211-12/+12
* Missed onezhibog2019-11-091-1/+1
* Fixed indentingzhibog2019-11-091-44/+44
* Removed comments regarding RFC test vectorszhibog2019-11-081-36/+1
* Added Base32 + official test vectors from the RFCzhibog2019-11-011-0/+180