mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-11-27 02:46:24 -05:00
- Add REUSE configuration - Add compliant licenses in LICENSES/ - Add copyright SPDX tags - Run REUSE complicance check in CI - Remove spdx-ensure
14 lines
317 B
C
14 lines
317 B
C
// SPDX-FileCopyrightText: 2024 Tillitis AB <tillitis.se>
|
|
// 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
|