mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-11-26 02:16:24 -05:00
This was announced on the Tillitis Blog the 2nd of October 2024, for more info visit https://tillitis.se
14 lines
295 B
C
14 lines
295 B
C
// Copyright (C) 2024 - Tillitis AB
|
|
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
#ifndef AUTH_APP_H
|
|
#define AUTH_APP_H
|
|
|
|
#include "partition_table.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
void auth_app_create(struct auth_metadata *auth_table);
|
|
bool auth_app_authenticate(struct auth_metadata *auth_table);
|
|
|
|
#endif
|