openssl.nim 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850
  1. #
  2. #
  3. # Nim's Runtime Library
  4. # (c) Copyright 2015 Andreas Rumpf
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. ## OpenSSL support
  10. ##
  11. ## When OpenSSL is dynamically linked, the wrapper provides partial forward and backward
  12. ## compatibility for OpenSSL versions above and below 1.1.0
  13. ##
  14. ## OpenSSL can also be statically linked using `--dynlibOverride:ssl` for OpenSSL >= 1.1.0.
  15. ## If you want to statically link against OpenSSL 1.0.x, you now have to
  16. ## define the `openssl10` symbol via `-d:openssl10`.
  17. ##
  18. ## Build and test examples:
  19. ##
  20. ## .. code-block::
  21. ## ./bin/nim c -d:ssl -p:. -r tests/untestable/tssl.nim
  22. ## ./bin/nim c -d:ssl -p:. --dynlibOverride:ssl --passl:-lcrypto --passl:-lssl -r tests/untestable/tssl.nim
  23. when defined(nimHasStyleChecks):
  24. {.push styleChecks: off.}
  25. const useWinVersion = defined(windows) or defined(nimdoc)
  26. # To force openSSL version use -d:sslVersion=1.0.0
  27. # See: #10281, #10230
  28. # General issue:
  29. # Other dynamic libraries (like libpg) load different openSSL version then what nim loads.
  30. # Having two different openSSL loaded version causes a crash.
  31. # Use this compile time define to force the openSSL version that your other dynamic libraries want.
  32. const sslVersion {.strdefine.}: string = ""
  33. when sslVersion != "":
  34. when defined(macosx):
  35. const
  36. DLLSSLName* = "libssl." & sslVersion & ".dylib"
  37. DLLUtilName* = "libcrypto." & sslVersion & ".dylib"
  38. from posix import SocketHandle
  39. elif defined(windows):
  40. const
  41. DLLSSLName* = "libssl-" & sslVersion & ".dll"
  42. DLLUtilName* = "libcrypto-" & sslVersion & ".dll"
  43. from winlean import SocketHandle
  44. else:
  45. const
  46. DLLSSLName* = "libssl.so." & sslVersion
  47. DLLUtilName* = "libcrypto.so." & sslVersion
  48. from posix import SocketHandle
  49. elif useWinVersion:
  50. when defined(openssl10) or defined(nimOldDlls):
  51. when defined(cpu64):
  52. const
  53. DLLSSLName* = "(ssleay32|ssleay64).dll"
  54. DLLUtilName* = "(libeay32|libeay64).dll"
  55. else:
  56. const
  57. DLLSSLName* = "ssleay32.dll"
  58. DLLUtilName* = "libeay32.dll"
  59. elif defined(cpu64):
  60. const
  61. DLLSSLName* = "(libssl-1_1-x64|ssleay64|libssl64).dll"
  62. DLLUtilName* = "(libcrypto-1_1-x64|libeay64).dll"
  63. else:
  64. const
  65. DLLSSLName* = "(libssl-1_1|ssleay32|libssl32).dll"
  66. DLLUtilName* = "(libcrypto-1_1|libeay32).dll"
  67. from winlean import SocketHandle
  68. else:
  69. when defined(osx):
  70. const versions = "(.1.1|.38|.39|.41|.43|.44|.45|.46|.47|.48|.10|.1.0.2|.1.0.1|.1.0.0|.0.9.9|.0.9.8|)"
  71. else:
  72. const versions = "(.1.1|.1.0.2|.1.0.1|.1.0.0|.0.9.9|.0.9.8|.48|.47|.46|.45|.44|.43|.41|.39|.38|.10|)"
  73. when defined(macosx):
  74. const
  75. DLLSSLName* = "libssl" & versions & ".dylib"
  76. DLLUtilName* = "libcrypto" & versions & ".dylib"
  77. elif defined(genode):
  78. const
  79. DLLSSLName* = "libssl.lib.so"
  80. DLLUtilName* = "libcrypto.lib.so"
  81. else:
  82. const
  83. DLLSSLName* = "libssl.so" & versions
  84. DLLUtilName* = "libcrypto.so" & versions
  85. from posix import SocketHandle
  86. import dynlib
  87. type
  88. SslStruct {.final, pure.} = object
  89. SslPtr* = ptr SslStruct
  90. PSslPtr* = ptr SslPtr
  91. SslCtx* = SslPtr
  92. PSSL_METHOD* = SslPtr
  93. PSTACK* = SslPtr
  94. PX509* = SslPtr
  95. PX509_NAME* = SslPtr
  96. PEVP_MD* = SslPtr
  97. PBIO_METHOD* = SslPtr
  98. BIO* = SslPtr
  99. EVP_PKEY* = SslPtr
  100. PRSA* = SslPtr
  101. PASN1_UTCTIME* = SslPtr
  102. PASN1_cInt* = SslPtr
  103. PPasswdCb* = SslPtr
  104. EVP_MD* = SslPtr
  105. EVP_MD_CTX* = SslPtr
  106. EVP_PKEY_CTX* = SslPtr
  107. ENGINE* = SslPtr
  108. PFunction* = proc () {.cdecl.}
  109. DES_cblock* = array[0..7, int8]
  110. PDES_cblock* = ptr DES_cblock
  111. des_ks_struct*{.final.} = object
  112. ks*: DES_cblock
  113. weak_key*: cint
  114. des_key_schedule* = array[1..16, des_ks_struct]
  115. pem_password_cb* = proc(buf: cstring, size, rwflag: cint, userdata: pointer): cint {.cdecl.}
  116. PaddingType* = enum
  117. RSA_PKCS1_PADDING = 1.cint,
  118. RSA_SSLV23_PADDING = 2.cint,
  119. RSA_NO_PADDING = 3.cint,
  120. RSA_PKCS1_OAEP_PADDING = 4.cint,
  121. RSA_X931_PADDING = 5.cint,
  122. RSA_PKCS1_PSS_PADDING = 6.cint
  123. const
  124. SSL_SENT_SHUTDOWN* = 1
  125. SSL_RECEIVED_SHUTDOWN* = 2
  126. EVP_MAX_MD_SIZE* = 16 + 20
  127. SSL_ERROR_NONE* = 0
  128. SSL_ERROR_SSL* = 1
  129. SSL_ERROR_WANT_READ* = 2
  130. SSL_ERROR_WANT_WRITE* = 3
  131. SSL_ERROR_WANT_X509_LOOKUP* = 4
  132. SSL_ERROR_SYSCALL* = 5 #look at error stack/return value/errno
  133. SSL_ERROR_ZERO_RETURN* = 6
  134. SSL_ERROR_WANT_CONNECT* = 7
  135. SSL_ERROR_WANT_ACCEPT* = 8
  136. SSL_CTRL_NEED_TMP_RSA* = 1
  137. SSL_CTRL_SET_TMP_RSA* = 2
  138. SSL_CTRL_SET_TMP_DH* = 3
  139. SSL_CTRL_SET_TMP_ECDH* = 4
  140. SSL_CTRL_SET_TMP_RSA_CB* = 5
  141. SSL_CTRL_SET_TMP_DH_CB* = 6
  142. SSL_CTRL_SET_TMP_ECDH_CB* = 7
  143. SSL_CTRL_GET_SESSION_REUSED* = 8
  144. SSL_CTRL_GET_CLIENT_CERT_REQUEST* = 9
  145. SSL_CTRL_GET_NUM_RENEGOTIATIONS* = 10
  146. SSL_CTRL_CLEAR_NUM_RENEGOTIATIONS* = 11
  147. SSL_CTRL_GET_TOTAL_RENEGOTIATIONS* = 12
  148. SSL_CTRL_GET_FLAGS* = 13
  149. SSL_CTRL_EXTRA_CHAIN_CERT* = 14
  150. SSL_CTRL_SET_MSG_CALLBACK* = 15
  151. SSL_CTRL_SET_MSG_CALLBACK_ARG* = 16 # only applies to datagram connections
  152. SSL_CTRL_SET_MTU* = 17 # Stats
  153. SSL_CTRL_SESS_NUMBER* = 20
  154. SSL_CTRL_SESS_CONNECT* = 21
  155. SSL_CTRL_SESS_CONNECT_GOOD* = 22
  156. SSL_CTRL_SESS_CONNECT_RENEGOTIATE* = 23
  157. SSL_CTRL_SESS_ACCEPT* = 24
  158. SSL_CTRL_SESS_ACCEPT_GOOD* = 25
  159. SSL_CTRL_SESS_ACCEPT_RENEGOTIATE* = 26
  160. SSL_CTRL_SESS_HIT* = 27
  161. SSL_CTRL_SESS_CB_HIT* = 28
  162. SSL_CTRL_SESS_MISSES* = 29
  163. SSL_CTRL_SESS_TIMEOUTS* = 30
  164. SSL_CTRL_SESS_CACHE_FULL* = 31
  165. SSL_CTRL_OPTIONS* = 32
  166. SSL_CTRL_MODE* = 33
  167. SSL_CTRL_GET_READ_AHEAD* = 40
  168. SSL_CTRL_SET_READ_AHEAD* = 41
  169. SSL_CTRL_SET_SESS_CACHE_SIZE* = 42
  170. SSL_CTRL_GET_SESS_CACHE_SIZE* = 43
  171. SSL_CTRL_SET_SESS_CACHE_MODE* = 44
  172. SSL_CTRL_GET_SESS_CACHE_MODE* = 45
  173. SSL_CTRL_GET_MAX_CERT_LIST* = 50
  174. SSL_CTRL_SET_MAX_CERT_LIST* = 51 #* Allow SSL_write(..., n) to return r with 0 < r < n (i.e. report success
  175. # * when just a single record has been written): *
  176. SSL_CTRL_SET_TLSEXT_SERVERNAME_CB = 53
  177. SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG = 54
  178. SSL_CTRL_SET_TLSEXT_HOSTNAME = 55
  179. SSL_CTRL_SET_ECDH_AUTO* = 94
  180. TLSEXT_NAMETYPE_host_name* = 0
  181. SSL_TLSEXT_ERR_OK* = 0
  182. SSL_TLSEXT_ERR_ALERT_WARNING* = 1
  183. SSL_TLSEXT_ERR_ALERT_FATAL* = 2
  184. SSL_TLSEXT_ERR_NOACK* = 3
  185. SSL_MODE_ENABLE_PARTIAL_WRITE* = 1 #* Make it possible to retry SSL_write() with changed buffer location
  186. # * (buffer contents must stay the same!); this is not the default to avoid
  187. # * the misconception that non-blocking SSL_write() behaves like
  188. # * non-blocking write(): *
  189. SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER* = 2 #* Never bother the application with retries if the transport
  190. # * is blocking: *
  191. SSL_MODE_AUTO_RETRY* = 4 #* Don't attempt to automatically build certificate chain *
  192. SSL_MODE_NO_AUTO_CHAIN* = 8
  193. SSL_OP_NO_SSLv2* = 0x01000000
  194. SSL_OP_NO_SSLv3* = 0x02000000
  195. SSL_OP_NO_TLSv1* = 0x04000000
  196. SSL_OP_NO_TLSv1_1* = 0x08000000
  197. SSL_OP_ALL* = 0x000FFFFF
  198. SSL_VERIFY_NONE* = 0x00000000
  199. SSL_VERIFY_PEER* = 0x00000001
  200. SSL_ST_CONNECT* = 0x1000
  201. SSL_ST_ACCEPT* = 0x2000
  202. SSL_ST_INIT* = SSL_ST_CONNECT or SSL_ST_ACCEPT
  203. OPENSSL_DES_DECRYPT* = 0
  204. OPENSSL_DES_ENCRYPT* = 1
  205. X509_V_OK* = 0
  206. X509_V_ILLEGAL* = 1
  207. X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT* = 2
  208. X509_V_ERR_UNABLE_TO_GET_CRL* = 3
  209. X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE* = 4
  210. X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE* = 5
  211. X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY* = 6
  212. X509_V_ERR_CERT_SIGNATURE_FAILURE* = 7
  213. X509_V_ERR_CRL_SIGNATURE_FAILURE* = 8
  214. X509_V_ERR_CERT_NOT_YET_VALID* = 9
  215. X509_V_ERR_CERT_HAS_EXPIRED* = 10
  216. X509_V_ERR_CRL_NOT_YET_VALID* = 11
  217. X509_V_ERR_CRL_HAS_EXPIRED* = 12
  218. X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD* = 13
  219. X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD* = 14
  220. X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD* = 15
  221. X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD* = 16
  222. X509_V_ERR_OUT_OF_MEM* = 17
  223. X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT* = 18
  224. X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN* = 19
  225. X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY* = 20
  226. X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE* = 21
  227. X509_V_ERR_CERT_CHAIN_TOO_LONG* = 22
  228. X509_V_ERR_CERT_REVOKED* = 23
  229. X509_V_ERR_INVALID_CA* = 24
  230. X509_V_ERR_PATH_LENGTH_EXCEEDED* = 25
  231. X509_V_ERR_INVALID_PURPOSE* = 26
  232. X509_V_ERR_CERT_UNTRUSTED* = 27
  233. X509_V_ERR_CERT_REJECTED* = 28 #These are 'informational' when looking for issuer cert
  234. X509_V_ERR_SUBJECT_ISSUER_MISMATCH* = 29
  235. X509_V_ERR_AKID_SKID_MISMATCH* = 30
  236. X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH* = 31
  237. X509_V_ERR_KEYUSAGE_NO_CERTSIGN* = 32
  238. X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER* = 33
  239. X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION* = 34 #The application is not happy
  240. X509_V_ERR_APPLICATION_VERIFICATION* = 50
  241. SSL_FILETYPE_ASN1* = 2
  242. SSL_FILETYPE_PEM* = 1
  243. EVP_PKEY_RSA* = 6 # libssl.dll
  244. BIO_C_SET_CONNECT = 100
  245. BIO_C_DO_STATE_MACHINE = 101
  246. BIO_C_GET_SSL = 110
  247. proc TLSv1_method*(): PSSL_METHOD{.cdecl, dynlib: DLLSSLName, importc.}
  248. # TLS_method(), TLS_server_method(), TLS_client_method() are introduced in 1.1.0
  249. # and support SSLv3, TLSv1, TLSv1.1 and TLSv1.2
  250. # SSLv23_method(), SSLv23_server_method(), SSLv23_client_method() are removed in 1.1.0
  251. when compileOption("dynlibOverride", "ssl") or defined(noOpenSSLHacks):
  252. # Static linking
  253. when defined(openssl10):
  254. proc SSL_library_init*(): cint {.cdecl, dynlib: DLLSSLName, importc, discardable.}
  255. proc SSL_load_error_strings*() {.cdecl, dynlib: DLLSSLName, importc.}
  256. proc SSLv23_method*(): PSSL_METHOD {.cdecl, dynlib: DLLSSLName, importc.}
  257. proc SSLeay(): culong {.cdecl, dynlib: DLLUtilName, importc.}
  258. proc getOpenSSLVersion*(): culong =
  259. SSLeay()
  260. else:
  261. proc OPENSSL_init_ssl*(opts: uint64, settings: uint8): cint {.cdecl, dynlib: DLLSSLName, importc, discardable.}
  262. proc SSL_library_init*(): cint {.discardable.} =
  263. ## Initialize SSL using OPENSSL_init_ssl for OpenSSL >= 1.1.0
  264. return OPENSSL_init_ssl(0.uint64, 0.uint8)
  265. proc TLS_method*(): PSSL_METHOD {.cdecl, dynlib: DLLSSLName, importc.}
  266. proc SSLv23_method*(): PSSL_METHOD =
  267. TLS_method()
  268. proc OpenSSL_version_num(): culong {.cdecl, dynlib: DLLUtilName, importc.}
  269. proc getOpenSSLVersion*(): culong =
  270. ## Return OpenSSL version as unsigned long
  271. OpenSSL_version_num()
  272. proc SSL_load_error_strings*() =
  273. ## Removed from OpenSSL 1.1.0
  274. # This proc prevents breaking existing code calling SslLoadErrorStrings
  275. # Static linking against OpenSSL < 1.1.0 is not supported
  276. discard
  277. when defined(libressl) or defined(openssl10):
  278. proc SSL_state(ssl: SslPtr): cint {.cdecl, dynlib: DLLSSLName, importc.}
  279. proc SSL_in_init*(ssl: SslPtr): cint {.inline.} =
  280. SSl_state(ssl) and SSL_ST_INIT
  281. else:
  282. proc SSL_in_init*(ssl: SslPtr): cint {.cdecl, dynlib: DLLSSLName, importc.}
  283. proc SSL_CTX_set_ciphersuites*(ctx: SslCtx, str: cstring): cint {.cdecl, dynlib: DLLSSLName, importc.}
  284. template OpenSSL_add_all_algorithms*() = discard
  285. proc SSLv23_client_method*(): PSSL_METHOD {.cdecl, dynlib: DLLSSLName, importc.}
  286. proc SSLv2_method*(): PSSL_METHOD {.cdecl, dynlib: DLLSSLName, importc.}
  287. proc SSLv3_method*(): PSSL_METHOD {.cdecl, dynlib: DLLSSLName, importc.}
  288. else:
  289. # Here we're trying to stay compatible with openssl 1.0.* and 1.1.*. Some
  290. # symbols are loaded dynamically and we don't use them if not found.
  291. proc thisModule(): LibHandle {.inline.} =
  292. var thisMod {.global.}: LibHandle
  293. if thisMod.isNil: thisMod = loadLib()
  294. result = thisMod
  295. proc sslModule(): LibHandle {.inline.} =
  296. var sslMod {.global.}: LibHandle
  297. if sslMod.isNil: sslMod = loadLibPattern(DLLSSLName)
  298. result = sslMod
  299. proc utilModule(): LibHandle {.inline.} =
  300. var utilMod {.global.}: LibHandle
  301. if utilMod.isNil: utilMod = loadLibPattern(DLLUtilName)
  302. result = utilMod
  303. proc symNullable(dll: LibHandle, name: string, alternativeName = ""): pointer =
  304. # Load from DLL.
  305. if not dll.isNil:
  306. result = symAddr(dll, name)
  307. if result.isNil and alternativeName.len > 0:
  308. result = symAddr(dll, alternativeName)
  309. # Attempt to load from current exe.
  310. if result.isNil:
  311. let thisDynlib = thisModule()
  312. if thisDynlib.isNil: return nil
  313. result = symAddr(thisDynlib, name)
  314. if result.isNil and alternativeName.len > 0:
  315. result = symAddr(thisDynlib, alternativeName)
  316. proc sslSymNullable(name: string, alternativeName = ""): pointer =
  317. sslModule().symNullable(name, alternativeName)
  318. proc sslSymThrows(name: string, alternativeName = ""): pointer =
  319. result = sslSymNullable(name, alternativeName)
  320. if result.isNil: raiseInvalidLibrary(name)
  321. proc utilSymNullable(name: string, alternativeName = ""): pointer =
  322. utilModule().symNullable(name, alternativeName)
  323. proc loadPSSLMethod(method1, method2: string): PSSL_METHOD =
  324. ## Load <method1> from OpenSSL if available, otherwise <method2>
  325. ##
  326. let methodSym = sslSymNullable(method1, method2)
  327. if methodSym.isNil:
  328. raise newException(LibraryError, "Could not load " & method1 & " nor " & method2)
  329. let method2Proc = cast[proc(): PSSL_METHOD {.cdecl, gcsafe.}](methodSym)
  330. return method2Proc()
  331. proc SSL_library_init*(): cint {.discardable.} =
  332. ## Initialize SSL using OPENSSL_init_ssl for OpenSSL >= 1.1.0 otherwise
  333. ## SSL_library_init
  334. let newInitSym = sslSymNullable("OPENSSL_init_ssl")
  335. if not newInitSym.isNil:
  336. let newInitProc =
  337. cast[proc(opts: uint64, settings: uint8): cint {.cdecl.}](newInitSym)
  338. return newInitProc(0, 0)
  339. let olderProc = cast[proc(): cint {.cdecl.}](sslSymThrows("SSL_library_init"))
  340. if not olderProc.isNil: result = olderProc()
  341. proc SSL_load_error_strings*() =
  342. # TODO: Are we ignoring this on purpose? SSL GitHub CI fails otherwise.
  343. let theProc = cast[proc() {.cdecl.}](sslSymNullable("SSL_load_error_strings"))
  344. if not theProc.isNil: theProc()
  345. proc SSLv23_client_method*(): PSSL_METHOD =
  346. loadPSSLMethod("SSLv23_client_method", "TLS_client_method")
  347. proc SSLv23_method*(): PSSL_METHOD =
  348. loadPSSLMethod("SSLv23_method", "TLS_method")
  349. proc SSLv2_method*(): PSSL_METHOD =
  350. loadPSSLMethod("SSLv2_method", "TLS_method")
  351. proc SSLv3_method*(): PSSL_METHOD =
  352. loadPSSLMethod("SSLv3_method", "TLS_method")
  353. proc TLS_method*(): PSSL_METHOD =
  354. loadPSSLMethod("TLS_method", "SSLv23_method")
  355. proc TLS_client_method*(): PSSL_METHOD =
  356. loadPSSLMethod("TLS_client_method", "SSLv23_client_method")
  357. proc TLS_server_method*(): PSSL_METHOD =
  358. loadPSSLMethod("TLS_server_method", "SSLv23_server_method")
  359. proc OpenSSL_add_all_algorithms*() =
  360. # TODO: Are we ignoring this on purpose? SSL GitHub CI fails otherwise.
  361. let theProc = cast[proc() {.cdecl.}](sslSymNullable("OPENSSL_add_all_algorithms_conf"))
  362. if not theProc.isNil: theProc()
  363. proc getOpenSSLVersion*(): culong =
  364. ## Return OpenSSL version as unsigned long or 0 if not available
  365. let theProc = cast[proc(): culong {.cdecl, gcsafe.}](utilSymNullable("OpenSSL_version_num", "SSLeay"))
  366. result =
  367. if theProc.isNil: 0.culong
  368. else: theProc()
  369. proc SSL_in_init*(ssl: SslPtr): cint =
  370. # A compatibility wrapper for `SSL_in_init()` for OpenSSL 1.0, 1.1 and LibreSSL
  371. const MainProc = "SSL_in_init"
  372. let
  373. theProc {.global.} = cast[proc(ssl: SslPtr): cint {.cdecl, gcsafe.}](sslSymNullable(MainProc))
  374. # Fallback
  375. sslState {.global.} = cast[proc(ssl: SslPtr): cint {.cdecl, gcsafe.}](sslSymNullable("SSL_state"))
  376. if not theProc.isNil:
  377. result = theProc(ssl)
  378. elif not sslState.isNil:
  379. result = sslState(ssl) and SSL_ST_INIT
  380. else:
  381. raiseInvalidLibrary MainProc
  382. proc SSL_CTX_set_ciphersuites*(ctx: SslCtx, str: cstring): cint =
  383. var theProc {.global.}: proc(ctx: SslCtx, str: cstring) {.cdecl, gcsafe.}
  384. if theProc.isNil:
  385. theProc = cast[typeof(theProc)](sslSymThrows("SSL_CTX_set_ciphersuites"))
  386. theProc(ctx, str)
  387. proc ERR_load_BIO_strings*(){.cdecl, dynlib: DLLUtilName, importc.}
  388. proc SSL_new*(context: SslCtx): SslPtr{.cdecl, dynlib: DLLSSLName, importc.}
  389. proc SSL_free*(ssl: SslPtr){.cdecl, dynlib: DLLSSLName, importc.}
  390. proc SSL_get_SSL_CTX*(ssl: SslPtr): SslCtx {.cdecl, dynlib: DLLSSLName, importc.}
  391. proc SSL_set_SSL_CTX*(ssl: SslPtr, ctx: SslCtx): SslCtx {.cdecl, dynlib: DLLSSLName, importc.}
  392. proc SSL_CTX_set_session_id_context*(context: SslCtx, sid_ctx: string, sid_ctx_len: int){.cdecl, dynlib: DLLSSLName, importc.}
  393. proc SSL_get0_verified_chain*(ssl: SslPtr): PSTACK {.cdecl, dynlib: DLLSSLName,
  394. importc.}
  395. proc SSL_CTX_new*(meth: PSSL_METHOD): SslCtx{.cdecl,
  396. dynlib: DLLSSLName, importc.}
  397. proc SSL_CTX_load_verify_locations*(ctx: SslCtx, CAfile: cstring,
  398. CApath: cstring): cint{.cdecl, dynlib: DLLSSLName, importc.}
  399. proc SSL_CTX_free*(arg0: SslCtx){.cdecl, dynlib: DLLSSLName, importc.}
  400. proc SSL_CTX_set_verify*(s: SslCtx, mode: int, cb: proc (a: int, b: pointer): int {.cdecl.}){.cdecl, dynlib: DLLSSLName, importc.}
  401. proc SSL_get_verify_result*(ssl: SslPtr): int{.cdecl,
  402. dynlib: DLLSSLName, importc.}
  403. proc SSL_CTX_set_cipher_list*(s: SslCtx, ciphers: cstring): cint{.cdecl, dynlib: DLLSSLName, importc.}
  404. proc SSL_CTX_use_certificate_file*(ctx: SslCtx, filename: cstring, typ: cint): cint{.
  405. stdcall, dynlib: DLLSSLName, importc.}
  406. proc SSL_CTX_use_certificate_chain_file*(ctx: SslCtx, filename: cstring): cint{.
  407. stdcall, dynlib: DLLSSLName, importc.}
  408. proc SSL_CTX_use_PrivateKey_file*(ctx: SslCtx,
  409. filename: cstring, typ: cint): cint{.cdecl, dynlib: DLLSSLName, importc.}
  410. proc SSL_CTX_check_private_key*(ctx: SslCtx): cint{.cdecl, dynlib: DLLSSLName,
  411. importc.}
  412. proc SSL_CTX_get_ex_new_index*(argl: clong, argp: pointer, new_func: pointer, dup_func: pointer, free_func: pointer): cint {.cdecl, dynlib: DLLSSLName, importc.}
  413. proc SSL_CTX_set_ex_data*(ssl: SslCtx, idx: cint, arg: pointer): cint {.cdecl, dynlib: DLLSSLName, importc.}
  414. proc SSL_CTX_get_ex_data*(ssl: SslCtx, idx: cint): pointer {.cdecl, dynlib: DLLSSLName, importc.}
  415. proc SSL_set_fd*(ssl: SslPtr, fd: SocketHandle): cint{.cdecl, dynlib: DLLSSLName, importc.}
  416. proc SSL_shutdown*(ssl: SslPtr): cint{.cdecl, dynlib: DLLSSLName, importc.}
  417. proc SSL_set_shutdown*(ssl: SslPtr, mode: cint) {.cdecl, dynlib: DLLSSLName, importc: "SSL_set_shutdown".}
  418. proc SSL_get_shutdown*(ssl: SslPtr): cint {.cdecl, dynlib: DLLSSLName, importc: "SSL_get_shutdown".}
  419. proc SSL_connect*(ssl: SslPtr): cint{.cdecl, dynlib: DLLSSLName, importc.}
  420. proc SSL_read*(ssl: SslPtr, buf: pointer, num: int): cint{.cdecl, dynlib: DLLSSLName, importc.}
  421. proc SSL_write*(ssl: SslPtr, buf: cstring, num: int): cint{.cdecl, dynlib: DLLSSLName, importc.}
  422. proc SSL_get_error*(s: SslPtr, ret_code: cint): cint{.cdecl, dynlib: DLLSSLName, importc.}
  423. proc SSL_accept*(ssl: SslPtr): cint{.cdecl, dynlib: DLLSSLName, importc.}
  424. proc SSL_pending*(ssl: SslPtr): cint{.cdecl, dynlib: DLLSSLName, importc.}
  425. proc BIO_new_mem_buf*(data: pointer, len: cint): BIO{.cdecl,
  426. dynlib: DLLUtilName, importc.}
  427. proc BIO_new_ssl_connect*(ctx: SslCtx): BIO{.cdecl,
  428. dynlib: DLLSSLName, importc.}
  429. proc BIO_ctrl*(bio: BIO, cmd: cint, larg: int, arg: cstring): int{.cdecl,
  430. dynlib: DLLUtilName, importc.}
  431. proc BIO_get_ssl*(bio: BIO, ssl: ptr SslPtr): int =
  432. return BIO_ctrl(bio, BIO_C_GET_SSL, 0, cast[cstring](ssl))
  433. proc BIO_set_conn_hostname*(bio: BIO, name: cstring): int =
  434. return BIO_ctrl(bio, BIO_C_SET_CONNECT, 0, name)
  435. proc BIO_do_handshake*(bio: BIO): int =
  436. return BIO_ctrl(bio, BIO_C_DO_STATE_MACHINE, 0, nil)
  437. proc BIO_do_connect*(bio: BIO): int =
  438. return BIO_do_handshake(bio)
  439. when not defined(nimfix):
  440. proc BIO_read*(b: BIO, data: cstring, length: cint): cint{.cdecl,
  441. dynlib: DLLUtilName, importc.}
  442. proc BIO_write*(b: BIO, data: cstring, length: cint): cint{.cdecl,
  443. dynlib: DLLUtilName, importc.}
  444. proc BIO_free*(b: BIO): cint{.cdecl, dynlib: DLLUtilName, importc.}
  445. proc ERR_print_errors_fp*(fp: File){.cdecl, dynlib: DLLUtilName, importc.}
  446. proc ERR_error_string*(e: culong, buf: cstring): cstring{.cdecl,
  447. dynlib: DLLUtilName, importc.}
  448. proc ERR_get_error*(): culong{.cdecl, dynlib: DLLUtilName, importc.}
  449. proc ERR_peek_last_error*(): culong{.cdecl, dynlib: DLLUtilName, importc.}
  450. proc OPENSSL_config*(configName: cstring){.cdecl, dynlib: DLLUtilName, importc.}
  451. proc OPENSSL_sk_num*(stack: PSTACK): int {.cdecl, dynlib: DLLSSLName, importc.}
  452. proc OPENSSL_sk_value*(stack: PSTACK, index: int): pointer {.cdecl,
  453. dynlib: DLLSSLName, importc.}
  454. proc d2i_X509*(px: ptr PX509, i: ptr ptr uint8, len: cint): PX509 {.cdecl,
  455. dynlib: DLLUtilName, importc.}
  456. proc i2d_X509*(cert: PX509; o: ptr ptr uint8): cint {.cdecl,
  457. dynlib: DLLUtilName, importc.}
  458. proc d2i_X509*(b: string): PX509 =
  459. ## decode DER/BER bytestring into X.509 certificate struct
  460. var bb = b.cstring
  461. let i = cast[ptr ptr uint8](addr bb)
  462. let ret = d2i_X509(addr result, i, b.len.cint)
  463. if ret.isNil:
  464. raise newException(Exception, "X.509 certificate decoding failed")
  465. proc i2d_X509*(cert: PX509): string =
  466. ## encode `cert` to DER string
  467. let encoded_length = i2d_X509(cert, nil)
  468. result = newString(encoded_length)
  469. var q = result.cstring
  470. let o = cast[ptr ptr uint8](addr q)
  471. let length = i2d_X509(cert, o)
  472. if length.int <= 0:
  473. raise newException(Exception, "X.509 certificate encoding failed")
  474. when not useWinVersion and not defined(macosx) and not defined(android) and not defined(nimNoAllocForSSL):
  475. proc CRYPTO_set_mem_functions(a,b,c: pointer){.cdecl,
  476. dynlib: DLLUtilName, importc.}
  477. proc allocWrapper(size: int): pointer {.cdecl.} = allocShared(size)
  478. proc reallocWrapper(p: pointer; newSize: int): pointer {.cdecl.} =
  479. if p == nil:
  480. if newSize > 0: result = allocShared(newSize)
  481. elif newSize == 0: deallocShared(p)
  482. else: result = reallocShared(p, newSize)
  483. proc deallocWrapper(p: pointer) {.cdecl.} =
  484. if p != nil: deallocShared(p)
  485. proc CRYPTO_malloc_init*() =
  486. when not useWinVersion and not defined(macosx) and not defined(android) and not defined(nimNoAllocForSSL):
  487. CRYPTO_set_mem_functions(allocWrapper, reallocWrapper, deallocWrapper)
  488. proc SSL_CTX_ctrl*(ctx: SslCtx, cmd: cint, larg: clong, parg: pointer): clong{.
  489. cdecl, dynlib: DLLSSLName, importc.}
  490. proc SSL_CTX_callback_ctrl(ctx: SslCtx, typ: cint, fp: PFunction): int{.
  491. cdecl, dynlib: DLLSSLName, importc.}
  492. proc SSLCTXSetMode*(ctx: SslCtx, mode: int): int =
  493. result = SSL_CTX_ctrl(ctx, SSL_CTRL_MODE, clong mode, nil)
  494. proc SSL_ctrl*(ssl: SslPtr, cmd: cint, larg: int, parg: pointer): int{.
  495. cdecl, dynlib: DLLSSLName, importc.}
  496. proc SSL_set_tlsext_host_name*(ssl: SslPtr, name: cstring): int =
  497. ## Set the SNI server name extension to be used in a client hello.
  498. ## Returns 1 if SNI was set, 0 if current SSL configuration doesn't support SNI.
  499. result = SSL_ctrl(ssl, SSL_CTRL_SET_TLSEXT_HOSTNAME, TLSEXT_NAMETYPE_host_name, name)
  500. proc SSL_get_servername*(ssl: SslPtr, typ: cint = TLSEXT_NAMETYPE_host_name): cstring {.cdecl, dynlib: DLLSSLName, importc.}
  501. ## Retrieve the server name requested in the client hello. This can be used
  502. ## in the callback set in `SSL_CTX_set_tlsext_servername_callback` to
  503. ## implement virtual hosting. May return `nil`.
  504. proc SSL_CTX_set_tlsext_servername_callback*(ctx: SslCtx, cb: proc(ssl: SslPtr, cb_id: int, arg: pointer): int {.cdecl.}): int =
  505. ## Set the callback to be used on listening SSL connections when the client hello is received.
  506. ##
  507. ## The callback should return one of:
  508. ## * SSL_TLSEXT_ERR_OK
  509. ## * SSL_TLSEXT_ERR_ALERT_WARNING
  510. ## * SSL_TLSEXT_ERR_ALERT_FATAL
  511. ## * SSL_TLSEXT_ERR_NOACK
  512. result = SSL_CTX_callback_ctrl(ctx, SSL_CTRL_SET_TLSEXT_SERVERNAME_CB, cast[PFunction](cb))
  513. proc SSL_CTX_set_tlsext_servername_arg*(ctx: SslCtx, arg: pointer): int =
  514. ## Set the pointer to be used in the callback registered to `SSL_CTX_set_tlsext_servername_callback`.
  515. result = SSL_CTX_ctrl(ctx, SSL_CTRL_SET_TLSEXT_SERVERNAME_ARG, 0, arg)
  516. type
  517. PskClientCallback* = proc (ssl: SslPtr;
  518. hint: cstring; identity: cstring; max_identity_len: cuint; psk: ptr uint8;
  519. max_psk_len: cuint): cuint {.cdecl.}
  520. PskServerCallback* = proc (ssl: SslPtr;
  521. identity: cstring; psk: ptr uint8; max_psk_len: cint): cuint {.cdecl.}
  522. proc SSL_CTX_set_psk_client_callback*(ctx: SslCtx; callback: PskClientCallback) {.cdecl, dynlib: DLLSSLName, importc.}
  523. ## Set callback called when OpenSSL needs PSK (for client).
  524. proc SSL_CTX_set_psk_server_callback*(ctx: SslCtx; callback: PskServerCallback) {.cdecl, dynlib: DLLSSLName, importc.}
  525. ## Set callback called when OpenSSL needs PSK (for server).
  526. proc SSL_CTX_use_psk_identity_hint*(ctx: SslCtx; hint: cstring): cint {.cdecl, dynlib: DLLSSLName, importc.}
  527. ## Set PSK identity hint to use.
  528. proc SSL_get_psk_identity*(ssl: SslPtr): cstring {.cdecl, dynlib: DLLSSLName, importc.}
  529. ## Get PSK identity.
  530. proc SSL_CTX_set_ecdh_auto*(ctx: SslCtx, onoff: cint): cint {.inline.} =
  531. ## Set automatic curve selection.
  532. ##
  533. ## On OpenSSL >= 1.1.0 this is on by default and cannot be disabled.
  534. if getOpenSSLVersion() < 0x010100000 or getOpenSSLVersion() == 0x020000000:
  535. result = cint SSL_CTX_ctrl(ctx, SSL_CTRL_SET_ECDH_AUTO, onoff, nil)
  536. else:
  537. result = 1
  538. proc bioNew*(b: PBIO_METHOD): BIO{.cdecl, dynlib: DLLUtilName, importc: "BIO_new".}
  539. proc bioFreeAll*(b: BIO){.cdecl, dynlib: DLLUtilName, importc: "BIO_free_all".}
  540. proc bioSMem*(): PBIO_METHOD{.cdecl, dynlib: DLLUtilName, importc: "BIO_s_mem".}
  541. proc bioCtrlPending*(b: BIO): cint{.cdecl, dynlib: DLLUtilName, importc: "BIO_ctrl_pending".}
  542. proc bioRead*(b: BIO, Buf: cstring, length: cint): cint{.cdecl,
  543. dynlib: DLLUtilName, importc: "BIO_read".}
  544. proc bioWrite*(b: BIO, Buf: cstring, length: cint): cint{.cdecl,
  545. dynlib: DLLUtilName, importc: "BIO_write".}
  546. proc sslSetConnectState*(s: SslPtr) {.cdecl,
  547. dynlib: DLLSSLName, importc: "SSL_set_connect_state".}
  548. proc sslSetAcceptState*(s: SslPtr) {.cdecl,
  549. dynlib: DLLSSLName, importc: "SSL_set_accept_state".}
  550. proc sslRead*(ssl: SslPtr, buf: cstring, num: cint): cint{.cdecl,
  551. dynlib: DLLSSLName, importc: "SSL_read".}
  552. proc sslPeek*(ssl: SslPtr, buf: cstring, num: cint): cint{.cdecl,
  553. dynlib: DLLSSLName, importc: "SSL_peek".}
  554. proc sslWrite*(ssl: SslPtr, buf: cstring, num: cint): cint{.cdecl,
  555. dynlib: DLLSSLName, importc: "SSL_write".}
  556. proc sslSetBio*(ssl: SslPtr, rbio, wbio: BIO) {.cdecl,
  557. dynlib: DLLSSLName, importc: "SSL_set_bio".}
  558. proc sslDoHandshake*(ssl: SslPtr): cint {.cdecl,
  559. dynlib: DLLSSLName, importc: "SSL_do_handshake".}
  560. proc ErrClearError*(){.cdecl, dynlib: DLLUtilName, importc: "ERR_clear_error".}
  561. proc ErrFreeStrings*(){.cdecl, dynlib: DLLUtilName, importc: "ERR_free_strings".}
  562. proc ErrRemoveState*(pid: cint){.cdecl, dynlib: DLLUtilName, importc: "ERR_remove_state".}
  563. proc PEM_read_bio_RSA_PUBKEY*(bp: BIO, x: ptr PRSA, pw: pem_password_cb, u: pointer): PRSA {.cdecl,
  564. dynlib: DLLUtilName, importc.}
  565. proc PEM_read_RSA_PUBKEY*(fp: pointer; x: ptr PRSA; cb: pem_password_cb, u: pointer): PRSA {.cdecl,
  566. dynlib: DLLUtilName, importc.}
  567. proc RSA_verify*(kind: cint, origMsg: pointer, origMsgLen: cuint, signature: pointer,
  568. signatureLen: cuint, rsa: PRSA): cint {.cdecl, dynlib: DLLUtilName, importc.}
  569. proc PEM_read_RSAPrivateKey*(fp: pointer; x: ptr PRSA; cb: pem_password_cb, u: pointer): PRSA {.cdecl,
  570. dynlib: DLLUtilName, importc.}
  571. proc PEM_read_RSAPublicKey*(fp: pointer; x: ptr PRSA; cb: pem_password_cb, u: pointer): PRSA {.cdecl,
  572. dynlib: DLLUtilName, importc.}
  573. proc PEM_read_bio_RSAPublicKey*(bp: BIO, x: ptr PRSA, cb: pem_password_cb, u: pointer): PRSA {.cdecl,
  574. dynlib: DLLUtilName, importc.}
  575. proc PEM_read_bio_RSAPrivateKey*(bp: BIO, x: ptr PRSA, cb: pem_password_cb, u: pointer): PRSA {.cdecl,
  576. dynlib: DLLUtilName, importc.}
  577. proc RSA_private_encrypt*(flen: cint, fr: ptr uint8, to: ptr uint8, rsa: PRSA, padding: PaddingType): cint {.cdecl,
  578. dynlib: DLLUtilName, importc.}
  579. proc RSA_public_encrypt*(flen: cint, fr: ptr uint8, to: ptr uint8, rsa: PRSA, padding: PaddingType): cint {.cdecl,
  580. dynlib: DLLUtilName, importc.}
  581. proc RSA_private_decrypt*(flen: cint, fr: ptr uint8, to: ptr uint8, rsa: PRSA, padding: PaddingType): cint {.cdecl,
  582. dynlib: DLLUtilName, importc.}
  583. proc RSA_public_decrypt*(flen: cint, fr: ptr uint8, to: ptr uint8, rsa: PRSA, padding: PaddingType): cint {.cdecl,
  584. dynlib: DLLUtilName, importc.}
  585. proc RSA_free*(rsa: PRSA) {.cdecl, dynlib: DLLUtilName, importc.}
  586. proc RSA_size*(rsa: PRSA): cint {.cdecl, dynlib: DLLUtilName, importc.}
  587. # sha types
  588. proc EVP_md_null*(): EVP_MD {.cdecl, importc.}
  589. proc EVP_md2*(): EVP_MD {.cdecl, importc.}
  590. proc EVP_md4*(): EVP_MD {.cdecl, importc.}
  591. proc EVP_md5*(): EVP_MD {.cdecl, importc.}
  592. proc EVP_sha*(): EVP_MD {.cdecl, importc.}
  593. proc EVP_sha1*(): EVP_MD {.cdecl, importc.}
  594. proc EVP_dss*(): EVP_MD {.cdecl, importc.}
  595. proc EVP_dss1*(): EVP_MD {.cdecl, importc.}
  596. proc EVP_ecdsa*(): EVP_MD {.cdecl, importc.}
  597. proc EVP_sha224*(): EVP_MD {.cdecl, importc.}
  598. proc EVP_sha256*(): EVP_MD {.cdecl, importc.}
  599. proc EVP_sha384*(): EVP_MD {.cdecl, importc.}
  600. proc EVP_sha512*(): EVP_MD {.cdecl, importc.}
  601. proc EVP_mdc2*(): EVP_MD {.cdecl, importc.}
  602. proc EVP_ripemd160*(): EVP_MD {.cdecl, importc.}
  603. proc EVP_whirlpool*(): EVP_MD {.cdecl, importc.}
  604. proc EVP_MD_size*(md: EVP_MD): cint {.cdecl, importc.}
  605. # hmac functions
  606. proc HMAC*(evp_md: EVP_MD; key: pointer; key_len: cint; d: cstring; n: csize_t; md: cstring; md_len: ptr cuint): cstring {.cdecl, importc.}
  607. # RSA key functions
  608. proc PEM_read_bio_PrivateKey*(bp: BIO, x: ptr EVP_PKEY, cb: pointer, u: pointer): EVP_PKEY {.cdecl, importc.}
  609. proc EVP_PKEY_free*(p: EVP_PKEY) {.cdecl, importc.}
  610. proc EVP_DigestSignInit*(ctx: EVP_MD_CTX, pctx: ptr EVP_PKEY_CTX, typ: EVP_MD, e: ENGINE, pkey: EVP_PKEY): cint {.cdecl, importc.}
  611. proc EVP_DigestInit_ex*(ctx: EVP_MD_CTX, typ: PEVP_MD, engine: SslPtr = nil): cint {.cdecl, importc.}
  612. proc EVP_DigestUpdate*(ctx: EVP_MD_CTX, data: pointer, len: cuint): cint {.cdecl, importc.}
  613. proc EVP_DigestFinal_ex*(ctx: EVP_MD_CTX, buffer: pointer, size: ptr cuint): cint {.cdecl, importc.}
  614. proc EVP_DigestSignFinal*(ctx: EVP_MD_CTX, data: pointer, len: ptr csize_t): cint {.cdecl, importc.}
  615. proc EVP_PKEY_CTX_new*(pkey: EVP_PKEY, e: ENGINE): EVP_PKEY_CTX {.cdecl, importc.}
  616. proc EVP_PKEY_CTX_free*(pkeyCtx: EVP_PKEY_CTX) {.cdecl, importc.}
  617. proc EVP_PKEY_sign_init*(c: EVP_PKEY_CTX): cint {.cdecl, importc.}
  618. when defined(macosx) or defined(windows):
  619. proc EVP_MD_CTX_create*(): EVP_MD_CTX {.cdecl, importc.}
  620. proc EVP_MD_CTX_destroy*(ctx: EVP_MD_CTX) {.cdecl, importc.}
  621. proc EVP_MD_CTX_cleanup*(ctx: EVP_MD_CTX): cint {.cdecl, importc.}
  622. else:
  623. # some times you will need this instead:
  624. proc EVP_MD_CTX_create*(): EVP_MD_CTX {.cdecl, importc: "EVP_MD_CTX_new".}
  625. proc EVP_MD_CTX_destroy*(ctx: EVP_MD_CTX) {.cdecl, importc: "EVP_MD_CTX_free".}
  626. proc EVP_MD_CTX_cleanup*(ctx: EVP_MD_CTX): cint {.cdecl, importc: "EVP_MD_CTX_cleanup".}
  627. # <openssl/md5.h>
  628. type
  629. MD5_LONG* = cuint
  630. const
  631. MD5_CBLOCK* = 64
  632. MD5_LBLOCK* = int(MD5_CBLOCK div 4)
  633. MD5_DIGEST_LENGTH* = 16
  634. type
  635. MD5_CTX* = object
  636. A,B,C,D,Nl,Nh: MD5_LONG
  637. data: array[MD5_LBLOCK, MD5_LONG]
  638. num: cuint
  639. {.push callconv:cdecl, dynlib:DLLUtilName.}
  640. proc md5_Init*(c: var MD5_CTX): cint{.importc: "MD5_Init".}
  641. proc md5_Update*(c: var MD5_CTX; data: pointer; len: csize_t): cint{.importc: "MD5_Update".}
  642. proc md5_Final*(md: cstring; c: var MD5_CTX): cint{.importc: "MD5_Final".}
  643. proc md5*(d: ptr uint8; n: csize_t; md: ptr uint8): ptr uint8{.importc: "MD5".}
  644. proc md5_Transform*(c: var MD5_CTX; b: ptr uint8){.importc: "MD5_Transform".}
  645. {.pop.}
  646. from strutils import toHex, toLowerAscii
  647. proc hexStr(buf: cstring): string =
  648. # turn md5s output into a nice hex str
  649. result = newStringOfCap(32)
  650. for i in 0 ..< 16:
  651. result.add toHex(buf[i].ord, 2).toLowerAscii
  652. proc md5_File*(file: string): string {.raises: [IOError,Exception].} =
  653. ## Generate MD5 hash for a file. Result is a 32 character
  654. # hex string with lowercase characters (like the output
  655. # of `md5sum`
  656. const
  657. sz = 512
  658. let f = open(file,fmRead)
  659. var
  660. buf: array[sz,char]
  661. ctx: MD5_CTX
  662. discard md5_Init(ctx)
  663. while (let bytes = f.readChars(buf); bytes > 0):
  664. discard md5_Update(ctx, buf[0].addr, cast[csize_t](bytes))
  665. discard md5_Final(buf[0].addr, ctx)
  666. f.close
  667. result = hexStr(addr buf)
  668. proc md5_Str*(str: string): string =
  669. ## Generate MD5 hash for a string. Result is a 32 character
  670. ## hex string with lowercase characters
  671. var
  672. ctx: MD5_CTX
  673. res: array[MD5_DIGEST_LENGTH,char]
  674. input = str.cstring
  675. discard md5_Init(ctx)
  676. var i = 0
  677. while i < str.len:
  678. let L = min(str.len - i, 512)
  679. discard md5_Update(ctx, input[i].addr, cast[csize_t](L))
  680. i += L
  681. discard md5_Final(addr res, ctx)
  682. result = hexStr(addr res)
  683. when defined(nimHasStyleChecks):
  684. {.pop.}
  685. # Certificate validation
  686. # On old openSSL version some of these symbols are not available
  687. when not defined(nimDisableCertificateValidation) and not defined(windows):
  688. proc SSL_get_peer_certificate*(ssl: SslCtx): PX509{.cdecl, dynlib: DLLSSLName,
  689. importc.}
  690. proc X509_get_subject_name*(a: PX509): PX509_NAME{.cdecl, dynlib: DLLSSLName, importc.}
  691. proc X509_get_issuer_name*(a: PX509): PX509_NAME{.cdecl, dynlib: DLLUtilName, importc.}
  692. proc X509_NAME_oneline*(a: PX509_NAME, buf: cstring, size: cint): cstring {.
  693. cdecl, dynlib:DLLSSLName, importc.}
  694. proc X509_NAME_get_text_by_NID*(subject:cstring, NID: cint, buf: cstring, size: cint): cint{.
  695. cdecl, dynlib:DLLSSLName, importc.}
  696. proc X509_check_host*(cert: PX509, name: cstring, namelen: cint, flags:cuint, peername: cstring): cint {.cdecl, dynlib: DLLSSLName, importc.}
  697. proc X509_free*(cert: PX509) {.cdecl, dynlib: DLLSSLName, importc.}
  698. # Certificates store
  699. type PX509_STORE* = SslPtr
  700. type PX509_OBJECT* = SslPtr
  701. {.push callconv:cdecl, dynlib:DLLUtilName, importc.}
  702. proc X509_OBJECT_new*(): PX509_OBJECT
  703. proc X509_OBJECT_free*(a: PX509_OBJECT)
  704. proc X509_STORE_new*(): PX509_STORE
  705. proc X509_STORE_free*(v: PX509_STORE)
  706. proc X509_STORE_lock*(ctx: PX509_STORE): cint
  707. proc X509_STORE_unlock*(ctx: PX509_STORE): cint
  708. proc X509_STORE_up_ref*(v: PX509_STORE): cint
  709. proc X509_STORE_set_flags*(ctx: PX509_STORE; flags: culong): cint
  710. proc X509_STORE_set_purpose*(ctx: PX509_STORE; purpose: cint): cint
  711. proc X509_STORE_set_trust*(ctx: PX509_STORE; trust: cint): cint
  712. proc X509_STORE_add_cert*(ctx: PX509_STORE; x: PX509): cint
  713. {.pop.}
  714. when isMainModule:
  715. # A simple certificate test
  716. let certbytes = readFile("certificate.der")
  717. let cert = d2i_X509(certbytes)
  718. let encoded = cert.i2d_X509()
  719. assert encoded == certbytes