blob: 42b6df1c24f101332bb90a2d1c653ce6c35397dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
* Copyright (c) 2018 Yubico AB. All rights reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "fido.h"
int
fido_buf_read(const unsigned char **buf, size_t *len, void *dst, size_t count)
{
if (count > *len)
return (-1);
memcpy(dst, *buf, count);
*buf += count;
*len -= count;
return (0);
}
int
fido_buf_write(unsigned char **buf, size_t *len, const void *src, size_t count)
{
if (count > *len)
return (-1);
memcpy(*buf, src, count);
*buf += count;
*len -= count;
return (0);
}
|