blob: 5caf1ebd944812ba7737f7acfe610b4f8e25b6cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Public domain
* dummy shim for some tests.
*/
#include "extern.h"
struct auth *
auth_find(struct auth_tree *auths, const char *aki)
{
return NULL;
}
int
as_check_covered(uint32_t min, uint32_t max,
const struct cert_as *as, size_t asz)
{
return -1;
}
|