2024-09-16 14:11:01 +02:00
|
|
|
#ifndef DB_H_
|
|
|
|
#define DB_H_
|
|
|
|
|
|
|
|
#include <sqlite3.h>
|
|
|
|
|
2024-09-25 04:53:00 +02:00
|
|
|
void get_users();
|
|
|
|
uint8_t *get_sharedkey(uint8_t *username);
|
|
|
|
void save_sharedkey(uint8_t *username, uint8_t *shared_key);
|
|
|
|
void sqlite_init();
|
2024-09-16 14:11:01 +02:00
|
|
|
|
|
|
|
#endif
|