2012-11-03 01:16:01 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Amaury Pouly
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __keysig_search_h__
|
|
|
|
#define __keysig_search_h__
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2016-10-27 21:06:16 +00:00
|
|
|
#include <stddef.h>
|
2020-06-13 14:21:16 +00:00
|
|
|
|
|
|
|
/* these values are for the V1 format */
|
|
|
|
#define NWZ_KEY_SIZE 8
|
|
|
|
#define NWZ_SIG_SIZE 8
|
2012-11-03 01:16:01 +00:00
|
|
|
|
|
|
|
enum keysig_search_method_t
|
|
|
|
{
|
|
|
|
KEYSIG_SEARCH_NONE = 0,
|
|
|
|
KEYSIG_SEARCH_FIRST,
|
2017-01-04 15:35:38 +00:00
|
|
|
KEYSIG_SEARCH_XDIGITS = KEYSIG_SEARCH_FIRST,
|
|
|
|
KEYSIG_SEARCH_XDIGITS_UP,
|
|
|
|
KEYSIG_SEARCH_ALNUM,
|
2012-11-03 01:16:01 +00:00
|
|
|
KEYSIG_SEARCH_LAST
|
|
|
|
};
|
|
|
|
|
|
|
|
/* notify returns true if the key seems ok */
|
2016-08-30 07:19:30 +00:00
|
|
|
typedef bool (*keysig_notify_fn_t)(void *user, uint8_t key[NWZ_KEY_SIZE],
|
|
|
|
uint8_t sig[NWZ_SIG_SIZE]);
|
2012-11-03 01:16:01 +00:00
|
|
|
|
|
|
|
struct keysig_search_desc_t
|
|
|
|
{
|
|
|
|
const char *name;
|
|
|
|
const char *comment;
|
|
|
|
};
|
|
|
|
|
2020-06-17 21:31:31 +00:00
|
|
|
extern struct keysig_search_desc_t keysig_search_desc[KEYSIG_SEARCH_LAST];
|
2012-11-03 01:16:01 +00:00
|
|
|
|
2016-10-27 21:06:16 +00:00
|
|
|
bool keysig_search(int method, uint8_t *enc_buf, size_t buf_sz,
|
|
|
|
keysig_notify_fn_t notify, void *user, int nr_threads);
|
|
|
|
|
2012-11-03 01:16:01 +00:00
|
|
|
#endif /* __keysig_search_h__ */
|