98 lines
2.9 KiB
C
98 lines
2.9 KiB
C
/*
|
|
* This file is part of the Pico FIDO distribution (https://github.com/polhenarejos/pico-fido).
|
|
* 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 _FIDO_H_
|
|
#define _FIDO_H_
|
|
|
|
#include <stdlib.h>
|
|
#include "pico/stdlib.h"
|
|
#include "common.h"
|
|
#include "mbedtls/ecdsa.h"
|
|
#include "ctap_hid.h"
|
|
|
|
#define CTAP_PUBKEY_LEN (65)
|
|
#define KEY_PATH_LEN (32)
|
|
#define KEY_PATH_ENTRIES (KEY_PATH_LEN / sizeof(uint32_t))
|
|
#define SHA256_DIGEST_LENGTH (32)
|
|
#define KEY_HANDLE_LEN (KEY_PATH_LEN + SHA256_DIGEST_LENGTH)
|
|
|
|
extern int scan_files();
|
|
extern int derive_key(const uint8_t *app_id, bool new_key, uint8_t *key_handle, int, mbedtls_ecdsa_context *key);
|
|
extern bool wait_button_pressed();
|
|
extern CTAPHID_FRAME *ctap_req, *ctap_resp;
|
|
extern void init_fido();
|
|
|
|
#define FIDO2_ALG_ES256 -7 //ECDSA-SHA256 P256
|
|
#define FIDO2_ALG_EDDSA -8 //EdDSA
|
|
#define FIDO2_ALG_ES384 -35 //ECDSA-SHA384 P384
|
|
#define FIDO2_ALG_ES512 -36 //ECDSA-SHA512 P521
|
|
#define FIDO2_ALG_ECDH_ES_HKDF_256 -25 //ECDH-ES + HKDF-256
|
|
|
|
#define FIDO2_CURVE_P256 1
|
|
#define FIDO2_CURVE_P384 2
|
|
#define FIDO2_CURVE_P521 3
|
|
#define FIDO2_CURVE_X25519 4
|
|
#define FIDO2_CURVE_X448 5
|
|
#define FIDO2_CURVE_ED25519 6
|
|
#define FIDO2_CURVE_ED448 7
|
|
#define FIDO2_CURVE_P256K1 8
|
|
|
|
#define FIDO2_AUT_FLAG_UP 0x1
|
|
#define FIDO2_AUT_FLAG_UV 0x4
|
|
#define FIDO2_AUT_FLAG_AT 0x40
|
|
#define FIDO2_AUT_FLAG_ED 0x80
|
|
|
|
#define FIDO2_PERMISSION_MC 0x1
|
|
#define FIDO2_PERMISSION_GA 0x2
|
|
#define FIDO2_PERMISSION_CM 0x4
|
|
#define FIDO2_PERMISSION_BE 0x8
|
|
#define FIDO2_PERMISSION_LBW 0x10
|
|
#define FIDO2_PERMISSION_ACFG 0x20
|
|
|
|
#define MAX_PIN_RETRIES 8
|
|
extern bool getUserVerifiedFlagValue();
|
|
#define MAX_CREDENTIAL_COUNT_IN_LIST 16
|
|
#define MAX_CRED_ID_LENGTH 1024
|
|
#define MAX_RESIDENT_CREDENTIALS 256
|
|
|
|
typedef struct known_app {
|
|
const uint8_t *rp_id_hash;
|
|
const char *label;
|
|
const bool *use_sign_count;
|
|
const bool *use_self_attestation;
|
|
} known_app_t;
|
|
|
|
extern const known_app_t *find_app_by_rp_id_hash(const uint8_t *rp_id_hash);
|
|
|
|
#define TRANSPORT_TIME_LIMIT (30*1000) //USB
|
|
|
|
bool check_user_presence();
|
|
|
|
typedef struct pinUvAuthToken {
|
|
uint8_t *data;
|
|
size_t len;
|
|
bool in_use;
|
|
uint8_t permissions;
|
|
uint8_t rp_id_hash[32];
|
|
} pinUvAuthToken_t;
|
|
|
|
extern uint32_t user_present_time_limit;
|
|
|
|
extern pinUvAuthToken_t paut;
|
|
|
|
#endif //_FIDO_H
|