summary refs log tree commit diff stats
path: root/lib/pure/base64.nim
Commit message (Expand)AuthorAgeFilesLines
* Add `safe` parameter to `base64.encodeMime` (#20559)Amjad Ben Hedhili2022-10-211-3/+11
* Remove unused `base64.encode` overload (#20369)Amjad Ben Hedhili2022-10-091-27/+10
* Optimize `base64.encodeMime` (#20409)Amjad Ben Hedhili2022-09-251-6/+20
* Documentation: Fix word usage (#19529)Sizhe Zhao2022-02-141-2/+2
* fix #17941: UnusedImport works for var/let/const/type invoked inside a generi...Timothee Cour2021-05-081-1/+1
* [std/base64] uses runnableExamples (#17882)flywind2021-05-011-32/+30
* further progress on rst roles & directives (fix #17646) (#17659)Andrey Makarov2021-04-081-4/+4
* Change stdlib imports to use std prefix in most examples (#17202)Danil Yarantsev2021-02-281-4/+4
* use single backtick (#17181)flywind2021-02-241-8/+8
* Save some alloc on base64 using encodeSize (#16465)Juan Carlos2020-12-271-0/+1
* base64: fixes the error message for an invalid base64 input character [backpo...Andreas Rumpf2020-09-201-1/+1
* Fix style inconsistencies due to the previous commitnarimiran2020-07-061-1/+1
* revert 0944b0f4narimiran2020-07-061-1/+1
* encodeMIME should be encodeMime by our coding guidelinesAraq2020-04-011-3/+3
* fixes #13722 (#13729)Andreas Rumpf2020-03-231-8/+20
* fight the code bloat in base64.nimAraq2020-03-201-7/+16
* Add Base64 safe (#13672)Juan Carlos2020-03-201-9/+28
* [backport] Fix style issues in lib/, tools/, and testament/. Fixes #12687. (#...3n-k12019-11-281-2/+2
* replace some runtime repr in stdlib for gc:arc (#12716)Andy Davidoff2019-11-251-2/+2
* Fix many broken linksJjp1372019-10-221-2/+2
* About 50% faster base64 implemention. (#12436)treeform2019-10-171-120/+144
* [backport] run nimpretty on hashesnarimiran2019-09-301-4/+5
* last stdlib cleanupsAraq2019-09-211-1/+3
* make more parts of the stdlib compile with --styleCheck:errorAraq2019-07-101-1/+1
* fixes #11364 (#11383)Andreas Rumpf2019-06-031-2/+2
* Fix header inconsistencies in documentation (#11071)Zed2019-04-231-1/+0
* better docs: base64 (#10371)Thomas T. Jarløv2019-01-191-25/+59
* make more tests greenAndreas Rumpf2018-04-301-4/+4
* Small base64.nim refactor (#5755)Daniil Yarancev2017-04-251-18/+23
* Fixes #5457 - StdLib base64 encodeInternal crashes with out of bound exceptio...Florent2017-03-021-3/+9
* Fixed base64 encodeYuriy Glukhov2016-04-111-1/+2
* Added examples and more docs to base64 module.Dominik Picheta2015-09-171-0/+37
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-21/+21
* Some docgen fixes.Dominik Picheta2014-09-131-0/+1
* updated base64.nimAraq2014-08-281-127/+127
* big renameAraq2014-08-271-1/+1
* Fixes base64 crash.Dominik Picheta2014-07-261-1/+1
* Added base64 encode overload for arrays of integers/bytesonionhammer2013-10-301-116/+126
* fixes base64 moduleAraq2013-08-151-6/+8
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* non-nil AST; continue after errors for IDE supportAraq2011-02-121-0/+0
* base64: decoding worksAraq2010-10-231-20/+6
* added base64 module; decoding still brokenAraq2010-10-231-0/+129
le='Blame the previous revision' href='/ahoang/Nim/blame/lib/pure/parseopt.nim?h=devel&id=8dae66415966e2cba50fd5295c514a97ff187fc2'>^
11b695875 ^
896766ae2 ^
d1f3512ab ^












11b695875 ^
d1f3512ab ^







972c51086 ^
d1f3512ab ^




bf9764e56 ^
d1f3512ab ^

bf9764e56 ^
d1f3512ab ^

485c37194 ^
972c51086 ^
d1f3512ab ^

972c51086 ^
11b695875 ^
d1f3512ab ^


3f3dda5a7 ^
d1f3512ab ^
11b695875 ^


8098e2a42 ^
dd806cafa ^
11b695875 ^
8098e2a42 ^
11b695875 ^
8098e2a42 ^
11b695875 ^
8098e2a42 ^



d1f3512ab ^
8098e2a42 ^













972c51086 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152