summary refs log tree commit diff stats
path: root/lib/impure/ssl.nim
Commit message (Expand)AuthorAgeFilesLines
* Improve net and ssl module docs.Dominik Picheta2016-04-041-0/+3
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-13/+13
* 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
* 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
a> 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379