1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-09 17:39:04 +00:00
trezor-firmware/crypto/monero/monero.h

22 lines
354 B
C
Raw Normal View History

2018-07-05 00:10:34 +00:00
//
// Created by Dusan Klinec on 10/05/2018.
//
#ifndef TREZOR_CRYPTO_MONERO_H
#define TREZOR_CRYPTO_MONERO_H
#if !USE_MONERO
#error "Compile with -DUSE_MONERO=1"
#endif
#if !USE_KECCAK
#error "Compile with -DUSE_KECCAK=1"
#endif
#include "base58.h"
#include "range_proof.h"
2018-07-05 00:10:34 +00:00
#include "serialize.h"
#include "xmr.h"
#endif // TREZOR_CRYPTO_MONERO_H