mirror of
https://github.com/XorTroll/hacPack.git
synced 2024-11-27 03:50:33 +00:00
13 lines
279 B
C
13 lines
279 B
C
#ifndef HACPACK_EXTKEYS_H
|
|
#define HACPACK_EXTKEYS_H
|
|
|
|
#include <string.h>
|
|
#include "types.h"
|
|
#include "utils.h"
|
|
#include "settings.h"
|
|
|
|
void parse_hex_key(unsigned char *key, const char *hex, unsigned int len);
|
|
void extkeys_initialize_keyset(hp_keyset_t *keyset, FILE *f);
|
|
|
|
#endif
|