summary refs log tree commit diff stats
path: root/tests/stdlib/tbase64.nim
Commit message (Collapse)AuthorAgeFilesLines
* Fix std/base64.decode out of bounds read (#23526)bptato2024-04-221-0/+2
| | | | inputLen may end up as 0 in the loop if the input string only includes trailing characters. e.g. without the patch, decode(" ") would panic.
* remove unnecessary side-effects from base64.encode(mime) (#22986)tersec2023-11-251-0/+4
| | | Fixes https://github.com/nim-lang/Nim/issues/22985
* stdlib tests now check refc too (#21664)ringabout2023-04-211-0/+1
| | | | | | | | | | | * stdlib tests now check refc too * typo * fixes line numbers * disable cpp * do not touch
* make more standard libraries work with `nimPreviewSlimSystem` (#20343)ringabout2022-09-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | * make more standard libraries work with `nimPreviewSlimSystem` * typo * part two * Delete specutils.nim * fixes more tests * more fixes * fixes tests * fixes three more tests * add formatfloat import * fix * last
* enable style:usages for stdlib tests [backport: 1.6] (#19715)flywind2022-04-131-3/+3
| | | | | | | | | | | | | | | * enable style:usages for stdlib tests * freeAddrInfo * more tests * importc * bufSize * fix more * => parseSql and renderSql
* improve tbase64.nim (#17964)Timothee Cour2021-05-071-12/+6
|
* fixes #13722 (#13729)Andreas Rumpf2020-03-231-3/+6
| | | | | * fixes #13722 * better fix
* Add Base64 safe (#13672)Juan Carlos2020-03-201-0/+15
| | | | * Implement RFC-4648 Section-7 * https://github.com/nim-lang/Nim/pull/13672#issuecomment-600993466
* About 50% faster base64 implemention. (#12436)treeform2019-10-171-0/+44