OpenModem/hardware/Crypto.h

45 lines
1.0 KiB
C
Raw Permalink Normal View History

2019-02-04 14:30:52 -07:00
#ifndef CRYPTO_H
#define CRYPTO_H
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdio.h>
2019-02-07 10:36:40 -07:00
#include "hardware/crypto/AES.h"
#include "hardware/crypto/HMAC_MD5.h"
2019-02-07 05:16:42 -07:00
#include "hardware/LED.h"
#include "hardware/SD.h"
#define CRYPTO_KEY_SIZE_BITS 128
#define CRYPTO_KEY_SIZE (CRYPTO_KEY_SIZE_BITS/8)
2019-02-07 10:36:40 -07:00
#define CRYPTO_HMAC_SIZE_BITS 128
#define CRYPTO_HMAC_SIZE (CRYPTO_HMAC_SIZE_BITS/8)
2019-02-07 05:16:42 -07:00
#define MAX_IVS_PER_ENTROPY_BLOCK 128
2019-02-04 14:30:52 -07:00
2019-02-08 05:18:49 -07:00
#define CRYPTO_WAIT_TIMEOUT_MS 2000
2019-02-07 10:36:40 -07:00
uint8_t crypto_work_block[CRYPTO_KEY_SIZE];
2019-02-04 14:30:52 -07:00
void crypto_init(void);
2019-02-08 05:18:49 -07:00
bool crypto_wait(void);
2019-02-07 10:36:40 -07:00
bool crypto_enabled(void);
bool crypto_generate_iv(void);
uint8_t* crypto_get_iv(void);
void crypto_set_iv_from_workblock(void);
void crypto_generate_hmac(uint8_t *data, size_t length);
void crypto_prepare(void);
void crypto_encrypt_block(uint8_t block[CRYPTO_KEY_SIZE]);
void crypto_decrypt_block(uint8_t block[CRYPTO_KEY_SIZE]);
2019-02-04 14:30:52 -07:00
void crypto_test(void);
2019-02-08 05:18:49 -07:00
bool should_disable_enryption(void);
2019-02-07 05:16:42 -07:00
bool load_key(void);
bool load_entropy(void);
bool load_entropy_index(void);
2019-02-04 14:30:52 -07:00
#endif