WIP auth app

This commit is contained in:
Daniel Jobson 2024-09-03 21:05:59 +02:00
parent af7df7c9e8
commit b52e57d4ea
No known key found for this signature in database
GPG key ID: 3707A9DBF4BB8F1A
3 changed files with 86 additions and 3 deletions

View file

@ -0,0 +1,14 @@
// 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