summary refs log tree commit diff stats
path: root/lib/impure/ssl.nim
Commit message (Collapse)AuthorAgeFilesLines
* another attempt to make tests green againAndreas Rumpf2017-10-101-3/+3
|
* Improve net and ssl module docs.Dominik Picheta2016-04-041-0/+3
|
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-13/+13
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* lib/impure - Dropped 'T' from typespdw2015-06-041-6/+7
|
* Don't run non-test code when defined(testing)Oleh Prypin2015-04-211-1/+1
|
* some progress on documentation buildingAraq2014-09-171-16/+16
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
|
* fixes #164Araq2012-07-111-4/+4
|
* Sockets are now buffered and have ssl support through openssl.Dominik Picheta2012-06-031-0/+2
|
* year 2012 for most copyright headersAraq2012-01-021-1/+1
|
* sockets.recv optimizations; stdlib now supports taint modeAraq2011-09-241-3/+3
|
* non-nil AST; continue after errors for IDE supportAraq2011-02-121-0/+0
|
* Added a close function to the ssl module.dom962010-10-271-0/+6
|
* bugfix: typo in SMTP module; SCGI module finishedAraq2010-10-251-2/+2
|
* ssl.connect now returns the result of the certificate validation.dom962010-10-231-5/+3
|
* Added {.final.} to objects which are not meant to be inherited, and added an ↵dom962010-10-231-1/+1
| | | | OSError() when recvLine fails.
* Removed the assert()'s from ssl.nim, and limited lines to 80 chars.dom962010-10-231-8/+17
|
* Added an openssl wrapper, ssl module and smtp module.dom962010-10-231-0/+81
0a0252b61255'>b6c5fef4 ^
07308673 ^
b6c5fef4 ^
1d5046bc ^

b6c5fef4 ^
1d5046bc ^

b6c5fef4 ^
07308673 ^
f21cb52a ^

07308673 ^
f21cb52a ^
1d5046bc ^

f21cb52a ^
1d5046bc ^





f21cb52a ^
07308673 ^
f21cb52a ^

07308673 ^
f21cb52a ^
1d5046bc ^










6bad38c2 ^
07308673 ^
f21cb52a ^

07308673 ^
f21cb52a ^
1d5046bc ^

f21cb52a ^
1d5046bc ^

f21cb52a ^
07308673 ^
4531aebd ^

07308673 ^
4531aebd ^
1d5046bc ^

4531aebd ^
1d5046bc ^

4531aebd ^
07308673 ^
4531aebd ^

07308673 ^
4531aebd ^
1d5046bc ^

4531aebd ^
1d5046bc ^


4531aebd ^
07308673 ^
b6c5fef4 ^

07308673 ^
1730372e ^
1d5046bc ^







07308673 ^
1730372e ^
1d5046bc ^
07308673 ^
1730372e ^
1d5046bc ^
07308673 ^
1730372e ^
1d5046bc ^
07308673 ^
1730372e ^
1d5046bc ^
07308673 ^
6bad38c2 ^
1d5046bc ^
07308673 ^
1730372e ^

07308673 ^
1730372e ^
1d5046bc ^







07308673 ^
6bad38c2 ^
1d5046bc ^
07308673 ^
1730372e ^
1d5046bc ^
07308673 ^
6bad38c2 ^
1d5046bc ^
07308673 ^
6bad38c2 ^
1d5046bc ^
07308673 ^
1730372e ^
1d5046bc ^
07308673 ^
6bad38c2 ^
1d5046bc ^
07308673 ^
1730372e ^
1d5046bc ^
07308673 ^
1730372e ^
1d5046bc ^
07308673 ^
1730372e ^
1d5046bc ^
07308673 ^
1730372e ^

07308673 ^
1730372e ^
1d5046bc ^







07308673 ^
6bad38c2 ^
1d5046bc ^
07308673 ^
1730372e ^
1d5046bc ^
07308673 ^
6bad38c2 ^
1d5046bc ^
1730372e ^
1d5046bc ^
07308673 ^
1730372e ^

07308673 ^
8202255d ^
1d5046bc ^

8202255d ^
1d5046bc ^
07308673 ^
6bad38c2 ^
1d5046bc ^
07308673 ^
8202255d ^
1d5046bc ^
07308673 ^
8202255d ^
1d5046bc ^
8202255d ^
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