mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 18:28:25 +00:00
Debug function.
This commit is contained in:
committed by
Simon Kelley
parent
13e435ebca
commit
4e076d746f
@@ -36,6 +36,16 @@ static union _Pool
|
|||||||
} Pool[POOL_SIZE];
|
} Pool[POOL_SIZE];
|
||||||
static char pool_used = 0;
|
static char pool_used = 0;
|
||||||
|
|
||||||
|
static void print_hex(unsigned char *data, unsigned len)
|
||||||
|
{
|
||||||
|
while (len > 0)
|
||||||
|
{
|
||||||
|
printf("%02x", *data++);
|
||||||
|
--len;
|
||||||
|
}
|
||||||
|
printf("\n");
|
||||||
|
}
|
||||||
|
|
||||||
static int rsasha1_set_signature(VerifyAlgCtx *ctx_, unsigned char *data, unsigned len)
|
static int rsasha1_set_signature(VerifyAlgCtx *ctx_, unsigned char *data, unsigned len)
|
||||||
{
|
{
|
||||||
VACTX_rsasha1 *ctx = (VACTX_rsasha1 *)ctx_;
|
VACTX_rsasha1 *ctx = (VACTX_rsasha1 *)ctx_;
|
||||||
|
|||||||
Reference in New Issue
Block a user