1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #9463 from bergzand/pr/pkg/monocypher/initial

Monocypher: Initial import of package
This commit is contained in:
Juan I Carrano 2018-07-02 14:55:23 +02:00 committed by GitHub
commit 122ebb0b75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 181 additions and 0 deletions

11
pkg/monocypher/Makefile Normal file
View File

@ -0,0 +1,11 @@
PKG_NAME=monocypher
PKG_URL=https://github.com/LoupVaillant/Monocypher
PKG_VERSION=6c2edbb48a61f43452c48c5f1e3ddabb19af3111
PKG_LICENSE=CC-0
.PHONY: all
all: git-download
$(Q)"$(MAKE)" -C $(PKG_BUILDDIR)/src
include $(RIOTBASE)/pkg/pkg.mk

View File

@ -0,0 +1 @@
USEMODULE += monocypher_sha512

View File

@ -0,0 +1,7 @@
INCLUDES += -I$(PKGDIRBASE)/monocypher/src
INCLUDES += -I$(PKGDIRBASE)/monocypher/src/optional
ifneq (,$(filter monocypher_sha512,$(USEMODULE)))
CFLAGS += -DED25519_SHA512
DIRS += $(PKGDIRBASE)/monocypher/src/optional
endif

40
pkg/monocypher/doc.txt Normal file
View File

@ -0,0 +1,40 @@
/**
* @defgroup pkg_monocypher Monocypher cryptographic library
* @ingroup pkg
* @brief Provides the Monocypher cryptographic library.
*
* # Monocypher RIOT package
*
* Monocypher is a high performance cryptographic library. It provides functions
* for authenticated encryption, hashing, password key derivation, key
* exchange, and public key signatures.
*
* You can find the API and more information
* [here](https://monocypher.org/manual)
*
* ## Requirements
*
* @note Monocypher only supports 32bit platforms.
*
* Monocypher requires around 3K of stack space depending slightly on the
* platform, so beware that you're allocating at
* least `THREAD_STACKSIZE_DEFAULT + 3072` bytes.
*
* You can do it easily by adding:
*
* ```makefile
* CFLAGS += '-DTHREAD_STACKSIZE_MAIN=(THREAD_STACKSIZE_DEFAULT + 3072)'
* ```
*
* to your makefile.
*
* ## Usage
*
* Just add it as a package in your application:
*
* ```makefile
* USEPKG += monocypher
* ```
*
* @see https://monocypher.org/
*/

View File

@ -0,0 +1,16 @@
include ../Makefile.tests_common
# No 8 bit and 16 bit support
BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-uno chronos \
jiminy-mega256rfr2 mega-xplained msb-430 msb-430h telosb \
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
USEMODULE += embunit
USEMODULE += random
USEPKG += monocypher
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py

View File

@ -0,0 +1,84 @@
/*
* Copyright (C) 2018 Freie Universität Berlin
* Copyright (C) 2018 Inria
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup tests
* @{
*
* @file
* @brief Monocypher package
*
* @author Koen Zandberg <koen@bergzand.net>
*
* @}
*/
#include <string.h>
#include "monocypher.h"
#include "embUnit.h"
#include "random.h"
static uint8_t message[] = "0123456789abcdef";
static uint8_t sign_sk[32];
static uint8_t sign_pk[32];
static uint8_t signature[64];
static void setUp(void)
{
random_init(0);
}
static void test_monocypher_signverify(void)
{
int res;
/* Creating keypair ... */
random_bytes(sign_sk, sizeof(sign_sk));
crypto_sign_public_key(sign_pk, sign_sk);
/* Sign */
crypto_sign(signature, sign_sk, sign_pk, message, sizeof(message));
/* Verifying... */
res = crypto_check(signature, sign_pk, message, sizeof(message));
TEST_ASSERT_EQUAL_INT(0, res);
}
static void test_monocypher_verifynegative(void)
{
int res;
/* changing message at random position (10) */
message[0] = 'A';
/* Verifying... */
res = crypto_check(signature, sign_pk, message, sizeof(message));
TEST_ASSERT_EQUAL_INT(-1, res);
}
Test *tests_monocypher(void)
{
EMB_UNIT_TESTFIXTURES(fixtures) {
new_TestFixture(test_monocypher_signverify),
new_TestFixture(test_monocypher_verifynegative)
};
EMB_UNIT_TESTCALLER(monocypher_tests, setUp, NULL, fixtures);
return (Test*)&monocypher_tests;
}
int main(void)
{
TESTS_START();
TESTS_RUN(tests_monocypher());
TESTS_END();
return 0;
}

View File

@ -0,0 +1,22 @@
#!/usr/bin/env python3
# Copyright (C) 2016 Kaspar Schleiser <kaspar@schleiser.de>
# Copyright (C) 2016 Takuo Yonezawa <Yonezawa-T2@mail.dnp.co.jp>
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
import os
import sys
def testfunc(child):
child.expect(r"OK \(2 tests\)")
if __name__ == "__main__":
sys.path.append(os.path.join(os.environ['RIOTBASE'],
'dist/tools/testrunner'))
from testrunner import run
sys.exit(run(testfunc))