mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2024-12-25 23:49:36 -05:00
15 lines
285 B
C
15 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
|