60 lines
2.0 KiB
C
60 lines
2.0 KiB
C
/*
|
|
* This file is part of the Pico OpenPGP distribution (https://github.com/polhenarejos/pico-openpgp).
|
|
* Copyright (c) 2022 Pol Henarejos.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __OPENPGP_H_
|
|
#define __OPENPGP_H_
|
|
|
|
#include "stdlib.h"
|
|
#if !defined(ENABLE_EMULATION) && !defined(ESP_PLATFORM)
|
|
#include <pico/stdlib.h>
|
|
#endif
|
|
|
|
#include "pico_keys.h"
|
|
#include "apdu.h"
|
|
#include "mbedtls/rsa.h"
|
|
#include "mbedtls/ecdsa.h"
|
|
|
|
extern bool has_pw1;
|
|
extern bool has_pw3;
|
|
|
|
extern int store_keys(void *key_ctx, int type, uint16_t key_id, bool use_kek);
|
|
extern void make_rsa_response(mbedtls_rsa_context *rsa);
|
|
extern void make_ecdsa_response(mbedtls_ecdsa_context *ecdsa);
|
|
extern int ecdsa_sign(mbedtls_ecdsa_context *ctx,
|
|
const uint8_t *data,
|
|
size_t data_len,
|
|
uint8_t *out,
|
|
size_t *out_len);
|
|
extern int rsa_sign(mbedtls_rsa_context *ctx,
|
|
const uint8_t *data,
|
|
size_t data_len,
|
|
uint8_t *out,
|
|
size_t *out_len);
|
|
extern int load_private_key_rsa(mbedtls_rsa_context *ctx, file_t *fkey, bool use_dek);
|
|
extern int load_private_key_ecdsa(mbedtls_ecdsa_context *ctx, file_t *fkey, bool use_dek);
|
|
extern int pin_reset_retries(const file_t *pin, bool force);
|
|
|
|
#define ALGO_RSA 0x01
|
|
#define ALGO_ECDH 0x12
|
|
#define ALGO_ECDSA 0x13
|
|
#define ALGO_AES 0x70
|
|
#define ALGO_AES_128 0x71
|
|
#define ALGO_AES_192 0x72
|
|
#define ALGO_AES_256 0x74
|
|
|
|
#endif
|