aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/base64/base64.odin
Commit message (Collapse)AuthorAgeFilesLines
* Remove `core:mem` imports from `core:encoding`.Jeroen van Rijn3 days1-3/+3
|
* core:encoding/base64: add support for url variantrykad2026-01-171-0/+49
|
* Increase base64 decoding table size to 256, preventing out of bounds readsFranz Hoeltermann2025-11-221-19/+35
|
* Render examples.Jeroen van Rijn2025-10-101-8/+9
|
* Further overhaul of package line comments.Jeroen van Rijn2025-10-091-0/+1
|
* Update numerous package declaration namesgingerBill2024-04-181-1/+1
|
* encoding/base64: add decode_into, add testsLaytan Laats2024-03-041-43/+90
|
* encoding/cbor: initial package implementationLaytan Laats2024-03-041-47/+77
|
* Strip even more semicolons if followed by a `}` or `)` on the same linegingerBill2021-08-311-2/+2
|
* Remove unneeded semicolons from the core librarygingerBill2021-08-311-35/+35
|
* Make base32 and base64 adhere to `-strict-style`gingerBill2021-03-141-2/+2
|
* Remove usage of `do` in core librarygingerBill2020-09-231-26/+30
|
* Fix encoding/base64 encoding null bytes incorrectlyTetralux2020-02-281-5/+5
| | | | | Fixes #574. Thanks @jroatch!
* Added an implementation for Base64. Also provides the ability to supply your ↵zhibog2019-08-151-0/+93
own alphabet and decoding table.