From e2ddcc468f0cbf86b912364eaf46b74b0bd1ff27 Mon Sep 17 00:00:00 2001 From: cheatfate Date: Wed, 30 Jan 2019 14:15:10 +0200 Subject: [PATCH] Add Milagro submodule. Add main export blscurve.nim. --- .gitmodules | 3 +++ amcl | 1 + blscurve.nim | 10 ++++++++++ 3 files changed, 14 insertions(+) create mode 100644 .gitmodules create mode 160000 amcl create mode 100644 blscurve.nim diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..0969704 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "amcl"] + path = amcl + url = https://github.com/milagro-crypto/amcl diff --git a/amcl b/amcl new file mode 160000 index 0000000..d7d35e9 --- /dev/null +++ b/amcl @@ -0,0 +1 @@ +Subproject commit d7d35e999a075642bd01bcefef5765fa725972f7 diff --git a/blscurve.nim b/blscurve.nim new file mode 100644 index 0000000..d76eaa1 --- /dev/null +++ b/blscurve.nim @@ -0,0 +1,10 @@ +# Nim-BLSCurve +# Copyright (c) 2018 Status Research & Development GmbH +# Licensed under either of +# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE)) +# * MIT license ([LICENSE-MIT](LICENSE-MIT)) +# at your option. +# This file may not be copied, modified, or distributed except according to +# those terms. +import blscurve/[common, bls] +export common, bls