1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/contrib/lokinet-bootstrap-winnt
Rick V de1714c399
fix internal testnet bootstrap
remove release tag
2019-03-20 19:46:37 -05:00
..
include fix documentation 2019-01-23 18:53:30 -06:00
.gitignore grabbed packaging scripts and fluff from abandoned repo 2018-10-30 00:16:18 -05:00
base64enc.c remove ref to nrmicro 2019-02-06 19:53:11 -06:00
bootstrap.c fix installer bootstrap 2019-03-20 19:37:39 -05:00
COPYING update copyright description 2019-02-06 19:53:06 -06:00
Makefile try to shave off some space in the static data segment 2019-02-06 19:53:05 -06:00
mbedtls-win32.patch grabbed packaging scripts and fluff from abandoned repo 2018-10-30 00:16:18 -05:00
miniz.c grabbed packaging scripts and fluff from abandoned repo 2018-10-30 00:16:18 -05:00
README.md fix documentation 2019-01-23 18:53:30 -06:00
testnet.c fix internal testnet bootstrap 2019-03-20 19:46:37 -05:00
zpipe.c try to shave off some space in the static data segment 2019-02-06 19:53:05 -06:00

LokiNET bootstrap for Windows

This is a tiny executable that does the same thing as the lokinet-bootstrap shell script for Linux, specifically for the purpose of bypassing broken or outdated versions of Schannel that do not support current versions of TLS.

Building

requirements

  • mbedtls 2.13.0 or later, for both host and windows
  • wget for host (to download Netscape CA bundle from cURL website)
  • Also included is a patch that can be applied to the mbedtls source to enable features like AES-NI in protected mode, plus some networking fixes for win32

native build:

$ export INCLUDE=/mingw32/include LIBS=/mingw32/lib # or a different path
$ export CC=cc # change these if you use clang
$ export NATIVE_CC=$CC
$ export WINNT_INCLUDE=$INCLUDE WINNT_LIBS=$LIBS
$ make prepare;make lokinet-bootstrap

cross-compile build (If you have GNU sed, you can also update the certificate trust store with make prepare):

$ export INCLUDE=/usr/local/include LIBS=/usr/local/lib # or a different path
$ export CC=i686-w64-mingw32-gcc # change these if you use clang, make sure these are in your system $PATH!
$ export NATIVE_CC=cc
$ export WINNT_INCLUDE=/path/to/win32/headers WINNT_LIBS=/path/to/win32/libs
$ make lokinet-bootstrap

Usage

C:\>lokinet-bootstrap [uri] [local download path]

this is also included in the lokinet installer package.

-rick