DPP: Allow a list of supported curves to be used in bootstrapping URI
The new DPP_BOOTSTRAP_GEN command parameter supported_curves can be used to specify a colon separated list of supported curves. Information from a parsed URI shows this information with a new supp_curves line in the DPP_BOOTSTRAP_INFO output. Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
This commit is contained in:
parent
73b41762d0
commit
b0769ce61c
4 changed files with 133 additions and 6 deletions
|
@ -13,7 +13,7 @@
|
|||
#include "common.h"
|
||||
|
||||
|
||||
static int hex2num(char c)
|
||||
int hex2num(char c)
|
||||
{
|
||||
if (c >= '0' && c <= '9')
|
||||
return c - '0';
|
||||
|
|
|
@ -477,6 +477,7 @@ int hwaddr_aton(const char *txt, u8 *addr);
|
|||
int hwaddr_masked_aton(const char *txt, u8 *addr, u8 *mask, u8 maskable);
|
||||
int hwaddr_compact_aton(const char *txt, u8 *addr);
|
||||
int hwaddr_aton2(const char *txt, u8 *addr);
|
||||
int hex2num(char c);
|
||||
int hex2byte(const char *hex);
|
||||
int hexstr2bin(const char *hex, u8 *buf, size_t len);
|
||||
void inc_byte_array(u8 *counter, size_t len);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue