blob: 24fdc23637fa0c1affeef98af1a4b8323d6a51e7 (
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
|
/*
* 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.
*/
#ifndef _BLOB_H
#define _BLOB_H
typedef struct fido_blob {
unsigned char *ptr;
size_t len;
} fido_blob_t;
typedef struct fido_blob_array {
fido_blob_t *ptr;
size_t len;
} fido_blob_array_t;
cbor_item_t *fido_blob_encode(const fido_blob_t *);
fido_blob_t *fido_blob_new(void);
int fido_blob_decode(const cbor_item_t *, fido_blob_t *);
int fido_blob_is_empty(const fido_blob_t *);
int fido_blob_set(fido_blob_t *, const unsigned char *, size_t);
void fido_blob_free(fido_blob_t **);
void fido_free_blob_array(fido_blob_array_t *);
#endif /* !_BLOB_H */
|