You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/contrib/lokinet-bootstrap-winnt
Rick V de1714c399
fix internal testnet bootstrap
remove release tag
5 years ago
..
include fix documentation 5 years ago
.gitignore grabbed packaging scripts and fluff from abandoned repo 6 years ago
COPYING update copyright description 5 years ago
Makefile try to shave off some space in the static data segment 5 years ago
README.md fix documentation 5 years ago
base64enc.c remove ref to nrmicro 5 years ago
bootstrap.c fix installer bootstrap 5 years ago
mbedtls-win32.patch grabbed packaging scripts and fluff from abandoned repo 6 years ago
miniz.c grabbed packaging scripts and fluff from abandoned repo 6 years ago
testnet.c fix internal testnet bootstrap 5 years ago
zpipe.c try to shave off some space in the static data segment 5 years ago

README.md

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