mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-07-10 00:39:27 -04:00
14 lines
285 B
C
14 lines
285 B
C
// Copyright (C) 2024 - Tillitis AB
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#ifndef AUTH_APP_H
|
|
#define AUTH_APP_H
|
|
|
|
#include "partition_table.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
void auth_app_create(auth_metadata_t *auth_table);
|
|
bool auth_app_authenticate(auth_metadata_t *auth_table);
|
|
|
|
#endif
|