-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathokapi.h
More file actions
100 lines (74 loc) · 3.36 KB
/
okapi.h
File metadata and controls
100 lines (74 loc) · 3.36 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
typedef struct ByteBuffer {
int64_t len;
uint8_t *data;
} ByteBuffer;
typedef int32_t ErrorCode;
typedef struct ExternError {
ErrorCode code;
char *message;
} ExternError;
int32_t didcomm_pack(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t didcomm_unpack(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t didcomm_sign(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t didcomm_verify(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t didkey_generate(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t didkey_resolve(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t blake3_hash(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t blake3_keyed_hash(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t blake3_derive_key(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t sha256_hash(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t ldproofs_create_proof(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t okapi_metadata(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t oberon_create_key(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t oberon_create_token(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t oberon_blind_token(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t oberon_unblind_token(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t oberon_verify_token(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t oberon_create_proof(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
int32_t oberon_verify_proof(struct ByteBuffer request,
struct ByteBuffer *response,
struct ExternError *err);
void didcomm_byte_buffer_free(struct ByteBuffer v);
void didcomm_string_free(char *s);
void okapi_bytebuffer_free(struct ByteBuffer v);
void okapi_string_free(char *s);