modules: add missing copyright headers

This commit is contained in:
Pavol Rusnak 2016-10-11 14:05:55 +02:00
parent a9131f26e7
commit 9e3102742e
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
6 changed files with 42 additions and 0 deletions

View File

@ -1,3 +1,10 @@
/*
* Copyright (c) Pavol Rusnak, SatoshiLabs
*
* Licensed under TREZOR License
* see LICENSE file for details
*/
#include <string.h>
#include "rand.h"

View File

@ -1,3 +1,10 @@
/*
* Copyright (c) Pavol Rusnak, SatoshiLabs
*
* Licensed under TREZOR License
* see LICENSE file for details
*/
#ifndef __RAND_H__
#define __RAND_H__

View File

@ -1,3 +1,10 @@
/*
* Copyright (c) Pavol Rusnak, SatoshiLabs
*
* Licensed under TREZOR License
* see LICENSE file for details
*/
#include "ssss.h"
bool ssss_split(const bignum256 *secret, int m, int n, bignum256 *shares)

View File

@ -1,3 +1,10 @@
/*
* Copyright (c) Pavol Rusnak, SatoshiLabs
*
* Licensed under TREZOR License
* see LICENSE file for details
*/
#ifndef __SSSS_H__
#define __SSSS_H__

View File

@ -1,3 +1,10 @@
/*
* Copyright (c) Pavol Rusnak, SatoshiLabs
*
* Licensed under TREZOR License
* see LICENSE file for details
*/
extern struct _USBD_HandleTypeDef hUSBDDevice;
extern uint8_t USBD_HID_SendReport(struct _USBD_HandleTypeDef *pdev, uint8_t *report, uint16_t len);
extern int USBD_HID_Rx(uint8_t *buf, uint32_t len, uint32_t timeout);

View File

@ -1,3 +1,10 @@
/*
* Copyright (c) Pavol Rusnak, SatoshiLabs
*
* Licensed under TREZOR License
* see LICENSE file for details
*/
#include <arpa/inet.h>
#include <sys/socket.h>
#include <fcntl.h>