summary refs log tree commit diff stats
path: root/lib/std/sha1.nim
Commit message (Expand)AuthorAgeFilesLines
* move assertions out of system (#19599)flywind2022-03-231-0/+3
* Documentation: Fix word usage (#19529)Sizhe Zhao2022-02-141-2/+2
* correct licence header (#18935)flywind2021-10-011-1/+1
* Add changes required by Nimble lock file support (#12104)Ivan Bobev2021-07-151-0/+4
* CIs: attempt to use csources_v1 (#16282)Andreas Rumpf2021-04-211-2/+2
* remove std/ prefix from doc/lib.rst now that canonical import is shown in mod...Timothee Cour2021-03-291-17/+10
* add io.readChars overload (simpler, less error prone) (#16044)Timothee Cour2021-02-221-1/+1
* Improve documentation for std/sha1 (#16970)konsumlamm2021-02-091-35/+50
* move tests to testament (#16101)flywind2020-11-241-13/+0
* Do not read the whole file to compute SHA1 hash (fixes 15997) (#16006)Igor Ribeiro de Assis2020-11-181-1/+16
* Fix many broken linksJjp1372019-10-221-3/+3
* there is only one style -- my styleAraq2019-07-101-58/+58
* Make public additional types from sha1 module [feature] (#11694)Ivan Bobev2019-07-101-2/+2
* Make public some sha1 module procedures (#11655) [feature]Ivan Bobev2019-07-041-3/+3
* Make `secureHash` accept any `openArray[char]`, not only `string`. (#10988)c-blake2019-04-101-1/+1
* better docs: sha1 (#10374)Thomas T. Jarløv2019-01-191-1/+64
* Replace the sha1 implementation w/ a working one (#9242)LemonBoy2018-10-091-160/+167
* Add note to import "std/sha1" to sha1.nim (doc)Torro2018-06-011-0/+2
* move new sha1 module into the new 'std' namespaceAndreas Rumpf2018-02-061-0/+195
r Dmitry Podgorny <pasis.ua@gmail.com> 2013-06-30 18:59:38 +0300 initial support of autojoin for MUC' href='/danisanti/profani-tty/commit/src/xmpp/bookmark.c?id=2837c4054f0c46f9cbbd0f09571e7d91501f2253'>2837c405 ^
034cf730 ^



2837c405 ^
6e235845 ^
b9d29e9a ^








6e235845 ^

2837c405 ^
034cf730 ^

2837c405 ^



b9d29e9a ^










































2837c405 ^



6e235845 ^

2837c405 ^




b9d29e9a ^
2837c405 ^
b9d29e9a ^
2837c405 ^
6e235845 ^


2837c405 ^













b9d29e9a ^


2837c405 ^




7906bd6a ^

2837c405 ^



7906bd6a ^
2837c405 ^




b9d29e9a ^










2837c405 ^
7906bd6a ^
b9d29e9a ^





















2837c405 ^
2837c405 ^
b9d29e9a ^





2837c405 ^
b9d29e9a ^


2837c405 ^


2837c405 ^






6e235845 ^















b9d29e9a ^













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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245