blob: 73f39b43caf706c72c9bcbeb30eef26e2917a3fb (
plain)
1
2
3
4
5
6
7
8
9
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once
#include <stdint.h>
#include "iovec-util.h"
int fido2_generate_salt(struct iovec *ret_salt);
int fido2_read_salt_file(const char *filename, uint64_t offset, const char *client, const char *node, struct iovec *ret_salt);
|