revault_api 0.1.0-x64-mingw-ucrt
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +87 -0
- data/generated/revault_bindings_pb.rb +305 -0
- data/lib/revault/binding_operations.rb +1093 -0
- data/lib/revault/native_library.rb +40 -0
- data/lib/revault/vault.rb +906 -0
- data/native/revault_ruby_shim.c +341 -0
- data/native/windows-x86_64-msvc/revault_api.dll +0 -0
- data/native/windows-x86_64-msvc/revault_ruby_shim.dll +0 -0
- data/revault_api.rb +3 -0
- metadata +65 -0
|
@@ -0,0 +1,341 @@
|
|
|
1
|
+
#include "revault_api.h"
|
|
2
|
+
|
|
3
|
+
void ruby_buffer_free(RevaultBuffer *value) {
|
|
4
|
+
if (value != NULL) { buffer_free(*value); value->ptr = NULL; value->len = 0; }
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
void ruby_buffer_last_error_details(RevaultBuffer *out) {
|
|
8
|
+
if (out != NULL) *out = buffer_last_error_details();
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
void ruby_lockbox_get_file(const void *handle, const char *path, size_t path_len, RevaultBuffer *out) {
|
|
12
|
+
if (out != NULL) *out = lockbox_get_file(handle, path, path_len);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
void ruby_lockbox_stream_content(const void *handle, bool physical, RevaultBuffer *out) {
|
|
16
|
+
if (out != NULL) *out = lockbox_stream_content(handle, physical);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
void ruby_lockbox_cache_stats(const void *handle, RevaultBuffer *out) {
|
|
20
|
+
if (out != NULL) *out = lockbox_cache_stats(handle);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
void ruby_lockbox_import_stats(const void *handle, RevaultBuffer *out) {
|
|
24
|
+
if (out != NULL) *out = lockbox_import_stats(handle);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
void ruby_lockbox_inspect_file(const char *path, size_t path_len, RevaultBuffer *out) {
|
|
28
|
+
if (out != NULL) *out = lockbox_inspect_file(path, path_len);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
void ruby_lockbox_page_inspection(const void *handle, RevaultBuffer *out) {
|
|
32
|
+
if (out != NULL) *out = lockbox_page_inspection(handle);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
void ruby_lockbox_recovery_report(const void *handle, RevaultBuffer *out) {
|
|
36
|
+
if (out != NULL) *out = lockbox_recovery_report(handle);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
void ruby_lockbox_recovery_report_render(const void *handle, bool verbose, size_t max_entries, RevaultBuffer *out) {
|
|
40
|
+
if (out != NULL) *out = lockbox_recovery_report_render(handle, verbose, max_entries);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
void ruby_lockbox_recovery_scan_path(const char *path, size_t path_len, const uint8_t *key, size_t key_len, RevaultBuffer *out) {
|
|
44
|
+
if (out != NULL) *out = lockbox_recovery_scan_path(path, path_len, key, key_len);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
void ruby_lockbox_runtime_options(const void *handle, RevaultBuffer *out) {
|
|
48
|
+
if (out != NULL) *out = lockbox_runtime_options(handle);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
void ruby_lockbox_list(const void *handle, const char *path, size_t path_len, bool recursive, RevaultBuffer *out) {
|
|
52
|
+
if (out != NULL) *out = lockbox_list(handle, path, path_len, recursive);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
void ruby_lockbox_list_with_options(const void *handle, const char *path, size_t path_len, const char *glob, size_t glob_len, bool recursive, bool include_files, bool include_symlinks, bool include_directories, size_t limit, RevaultBuffer *out) {
|
|
56
|
+
if (out != NULL) *out = lockbox_list_with_options(handle, path, path_len, glob, glob_len, recursive, include_files, include_symlinks, include_directories, limit);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
void ruby_lockbox_stat(const void *handle, const char *path, size_t path_len, RevaultBuffer *out) {
|
|
60
|
+
if (out != NULL) *out = lockbox_stat(handle, path, path_len);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
void ruby_lockbox_get_variable(const void *handle, const char *name, size_t name_len, RevaultBuffer *out) {
|
|
64
|
+
if (out != NULL) *out = lockbox_get_variable(handle, name, name_len);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
void ruby_lockbox_list_variables(const void *handle, RevaultBuffer *out) {
|
|
68
|
+
if (out != NULL) *out = lockbox_list_variables(handle);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
void ruby_lockbox_variable_sensitivity(const void *handle, const char *name, size_t name_len, RevaultBuffer *out) {
|
|
72
|
+
if (out != NULL) *out = lockbox_variable_sensitivity(handle, name, name_len);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
void ruby_lockbox_get_symlink_target(const void *handle, const char *path, size_t path_len, RevaultBuffer *out) {
|
|
76
|
+
if (out != NULL) *out = lockbox_get_symlink_target(handle, path, path_len);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
void ruby_lockbox_id(const void *handle, RevaultBuffer *out) {
|
|
80
|
+
if (out != NULL) *out = lockbox_id(handle);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
void ruby_lockbox_read_range(const void *handle, const char *path, size_t path_len, uint64_t offset, uint64_t len, RevaultBuffer *out) {
|
|
84
|
+
if (out != NULL) *out = lockbox_read_range(handle, path, path_len, offset, len);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
void ruby_lockbox_recovery_scan(const uint8_t *bytes, size_t len, const uint8_t *key, size_t key_len, RevaultBuffer *out) {
|
|
88
|
+
if (out != NULL) *out = lockbox_recovery_scan(bytes, len, key, key_len);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
void ruby_lockbox_list_key_slots(const void *handle, RevaultBuffer *out) {
|
|
92
|
+
if (out != NULL) *out = lockbox_list_key_slots(handle);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
void ruby_lockbox_owner_inspection(const void *handle, RevaultBuffer *out) {
|
|
96
|
+
if (out != NULL) *out = lockbox_owner_inspection(handle);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
void ruby_lockbox_define_form(void *handle, const char *alias, size_t alias_len, const char *name, size_t name_len, const char *description, size_t description_len, const uint8_t *fields_proto, size_t fields_len, RevaultBuffer *out) {
|
|
100
|
+
if (out != NULL) *out = lockbox_define_form(handle, alias, alias_len, name, name_len, description, description_len, fields_proto, fields_len);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
void ruby_lockbox_list_form_definitions(const void *handle, RevaultBuffer *out) {
|
|
104
|
+
if (out != NULL) *out = lockbox_list_form_definitions(handle);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
void ruby_lockbox_resolve_form(const void *handle, const char *reference, size_t reference_len, RevaultBuffer *out) {
|
|
108
|
+
if (out != NULL) *out = lockbox_resolve_form(handle, reference, reference_len);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
void ruby_lockbox_list_form_revisions(const void *handle, const char *type_id, size_t type_id_len, RevaultBuffer *out) {
|
|
112
|
+
if (out != NULL) *out = lockbox_list_form_revisions(handle, type_id, type_id_len);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
void ruby_lockbox_create_form_record(void *handle, const char *path, size_t path_len, const char *type_reference, size_t type_len, const char *name, size_t name_len, RevaultBuffer *out) {
|
|
116
|
+
if (out != NULL) *out = lockbox_create_form_record(handle, path, path_len, type_reference, type_len, name, name_len);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
void ruby_lockbox_list_form_records(const void *handle, RevaultBuffer *out) {
|
|
120
|
+
if (out != NULL) *out = lockbox_list_form_records(handle);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
void ruby_lockbox_get_form_record(const void *handle, const char *path, size_t path_len, RevaultBuffer *out) {
|
|
124
|
+
if (out != NULL) *out = lockbox_get_form_record(handle, path, path_len);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
void ruby_lockbox_get_form_field(const void *handle, const char *path, size_t path_len, const char *field, size_t field_len, RevaultBuffer *out) {
|
|
128
|
+
if (out != NULL) *out = lockbox_get_form_field(handle, path, path_len, field, field_len);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
void ruby_lockbox_to_bytes(const void *handle, RevaultBuffer *out) {
|
|
132
|
+
if (out != NULL) *out = lockbox_to_bytes(handle);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
void ruby_key_contact_public(const void *handle, RevaultBuffer *out) {
|
|
136
|
+
if (out != NULL) *out = key_contact_public(handle);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
void ruby_key_contact_private(const void *handle, RevaultBuffer *out) {
|
|
140
|
+
if (out != NULL) *out = key_contact_private(handle);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
void ruby_key_contact_decrypt(const void *contact, const void *wrapped, RevaultBuffer *out) {
|
|
144
|
+
if (out != NULL) *out = key_contact_decrypt(contact, wrapped);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
void ruby_key_contact_wrapped_public(const void *wrapped, RevaultBuffer *out) {
|
|
148
|
+
if (out != NULL) *out = key_contact_wrapped_public(wrapped);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
void ruby_key_contact_wrapped_ciphertext(const void *wrapped, RevaultBuffer *out) {
|
|
152
|
+
if (out != NULL) *out = key_contact_wrapped_ciphertext(wrapped);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
void ruby_key_contact_wrapped_encrypted(const void *wrapped, RevaultBuffer *out) {
|
|
156
|
+
if (out != NULL) *out = key_contact_wrapped_encrypted(wrapped);
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
void ruby_key_signing_public(const void *handle, RevaultBuffer *out) {
|
|
160
|
+
if (out != NULL) *out = key_signing_public(handle);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
void ruby_key_signing_private(const void *handle, RevaultBuffer *out) {
|
|
164
|
+
if (out != NULL) *out = key_signing_private(handle);
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
void ruby_vault_key_export_private(const void *key, const char *format, size_t format_len, RevaultBuffer *out) {
|
|
168
|
+
if (out != NULL) *out = vault_key_export_private(key, format, format_len);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
void ruby_vault_key_export_public(const void *key, const char *format, size_t format_len, RevaultBuffer *out) {
|
|
172
|
+
if (out != NULL) *out = vault_key_export_public(key, format, format_len);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
void ruby_vault_key_fingerprint(const void *key, RevaultBuffer *out) {
|
|
176
|
+
if (out != NULL) *out = vault_key_fingerprint(key);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
void ruby_vault_key_format_hex(const uint8_t *bytes, size_t len, RevaultBuffer *out) {
|
|
180
|
+
if (out != NULL) *out = vault_key_format_hex(bytes, len);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
void ruby_vault_key_decode_hex(const char *text, size_t len, RevaultBuffer *out) {
|
|
184
|
+
if (out != NULL) *out = vault_key_decode_hex(text, len);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
void ruby_vault_key_format_crockford(const uint8_t *bytes, size_t len, RevaultBuffer *out) {
|
|
188
|
+
if (out != NULL) *out = vault_key_format_crockford(bytes, len);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
void ruby_vault_key_format_crockford_reading(const char *code, size_t len, RevaultBuffer *out) {
|
|
192
|
+
if (out != NULL) *out = vault_key_format_crockford_reading(code, len);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
void ruby_vault_key_decode_crockford(const char *code, size_t len, RevaultBuffer *out) {
|
|
196
|
+
if (out != NULL) *out = vault_key_decode_crockford(code, len);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
void ruby_vault_key_hex_encode(const uint8_t *bytes, size_t len, RevaultBuffer *out) {
|
|
200
|
+
if (out != NULL) *out = vault_key_hex_encode(bytes, len);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
void ruby_vault_key_hex_decode(const char *text, size_t len, RevaultBuffer *out) {
|
|
204
|
+
if (out != NULL) *out = vault_key_hex_decode(text, len);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
void ruby_vault_directory_root(const void *handle, RevaultBuffer *out) {
|
|
208
|
+
if (out != NULL) *out = vault_directory_root(handle);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
void ruby_vault_directory_list_private_keys(const void *handle, RevaultBuffer *out) {
|
|
212
|
+
if (out != NULL) *out = vault_directory_list_private_keys(handle);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
void ruby_vault_directory_list_private_key_names(const void *handle, RevaultBuffer *out) {
|
|
216
|
+
if (out != NULL) *out = vault_directory_list_private_key_names(handle);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
void ruby_vault_directory_list_contact_names(const void *handle, RevaultBuffer *out) {
|
|
220
|
+
if (out != NULL) *out = vault_directory_list_contact_names(handle);
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
void ruby_vault_directory_list_form_aliases(const void *handle, RevaultBuffer *out) {
|
|
224
|
+
if (out != NULL) *out = vault_directory_list_form_aliases(handle);
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
void ruby_vault_directory_list_contacts(const void *handle, RevaultBuffer *out) {
|
|
228
|
+
if (out != NULL) *out = vault_directory_list_contacts(handle);
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
void ruby_vault_directory_profile_email(const void *handle, const char *name, size_t name_len, RevaultBuffer *out) {
|
|
232
|
+
if (out != NULL) *out = vault_directory_profile_email(handle, name, name_len);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
void ruby_vault_directory_load_backup(const void *handle, const uint8_t *id, size_t id_len, RevaultBuffer *out) {
|
|
236
|
+
if (out != NULL) *out = vault_directory_load_backup(handle, id, id_len);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
void ruby_vault_directory_list_profile_generations(const void *handle, const char *name, size_t name_len, RevaultBuffer *out) {
|
|
240
|
+
if (out != NULL) *out = vault_directory_list_profile_generations(handle, name, name_len);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
void ruby_vault_directory_rotate_private_key(const void *handle, const char *name, size_t name_len, RevaultBuffer *out) {
|
|
244
|
+
if (out != NULL) *out = vault_directory_rotate_private_key(handle, name, name_len);
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
void ruby_vault_directory_list_known_lockboxes(const void *handle, RevaultBuffer *out) {
|
|
248
|
+
if (out != NULL) *out = vault_directory_list_known_lockboxes(handle);
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
void ruby_vault_directory_list_access_slot_labels(const void *handle, const uint8_t *id, size_t id_len, RevaultBuffer *out) {
|
|
252
|
+
if (out != NULL) *out = vault_directory_list_access_slot_labels(handle, id, id_len);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
void ruby_vault_directory_find_access_slot_labels(const void *handle, const uint8_t *id, size_t id_len, const char *name, size_t name_len, RevaultBuffer *out) {
|
|
256
|
+
if (out != NULL) *out = vault_directory_find_access_slot_labels(handle, id, id_len, name, name_len);
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
void ruby_vault_directory_define_form(const void *handle, const char *alias, size_t alias_len, const char *name, size_t name_len, const char *description, size_t description_len, const uint8_t *fields_proto, size_t fields_len, RevaultBuffer *out) {
|
|
260
|
+
if (out != NULL) *out = vault_directory_define_form(handle, alias, alias_len, name, name_len, description, description_len, fields_proto, fields_len);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
void ruby_vault_directory_resolve_form(const void *handle, const char *reference, size_t reference_len, RevaultBuffer *out) {
|
|
264
|
+
if (out != NULL) *out = vault_directory_resolve_form(handle, reference, reference_len);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
void ruby_vault_directory_list_forms(const void *handle, RevaultBuffer *out) {
|
|
268
|
+
if (out != NULL) *out = vault_directory_list_forms(handle);
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
void ruby_vault_directory_list_form_revisions(const void *handle, const char *type_id, size_t type_id_len, RevaultBuffer *out) {
|
|
272
|
+
if (out != NULL) *out = vault_directory_list_form_revisions(handle, type_id, type_id_len);
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
void ruby_vault_directory_remembered_password(const void *handle, const uint8_t *id, size_t id_len, RevaultBuffer *out) {
|
|
276
|
+
if (out != NULL) *out = vault_directory_remembered_password(handle, id, id_len);
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
void ruby_vault_backup_default(const char *path, size_t path_len, bool overwrite, RevaultBuffer *out) {
|
|
280
|
+
if (out != NULL) *out = vault_backup_default(path, path_len, overwrite);
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
void ruby_vault_restore_default(const char *path, size_t path_len, bool overwrite, RevaultBuffer *out) {
|
|
284
|
+
if (out != NULL) *out = vault_restore_default(path, path_len, overwrite);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
void ruby_vault_read_only_list_profile_names(const void *handle, RevaultBuffer *out) {
|
|
288
|
+
if (out != NULL) *out = vault_read_only_list_profile_names(handle);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
void ruby_vault_read_only_list_contact_names(const void *handle, RevaultBuffer *out) {
|
|
292
|
+
if (out != NULL) *out = vault_read_only_list_contact_names(handle);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
void ruby_vault_read_only_list_form_aliases(const void *handle, RevaultBuffer *out) {
|
|
296
|
+
if (out != NULL) *out = vault_read_only_list_form_aliases(handle);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
void ruby_vault_read_only_list_known_lockboxes(const void *handle, RevaultBuffer *out) {
|
|
300
|
+
if (out != NULL) *out = vault_read_only_list_known_lockboxes(handle);
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
void ruby_vault_agent_get(const uint8_t *id, size_t id_len, RevaultBuffer *out) {
|
|
304
|
+
if (out != NULL) *out = vault_agent_get(id, id_len);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
void ruby_vault_agent_list(RevaultBuffer *out) {
|
|
308
|
+
if (out != NULL) *out = vault_agent_list();
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
void ruby_vault_agent_sleep_support(RevaultBuffer *out) {
|
|
312
|
+
if (out != NULL) *out = vault_agent_sleep_support();
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
void ruby_vault_platform_status(RevaultBuffer *out) {
|
|
316
|
+
if (out != NULL) *out = vault_platform_status();
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
void ruby_vault_platform_get_password(RevaultBuffer *out) {
|
|
320
|
+
if (out != NULL) *out = vault_platform_get_password();
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
void ruby_vault_default_directory(RevaultBuffer *out) {
|
|
324
|
+
if (out != NULL) *out = vault_default_directory();
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
void ruby_vault_default_path(RevaultBuffer *out) {
|
|
328
|
+
if (out != NULL) *out = vault_default_path();
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
void ruby_vault_agent_log_path(RevaultBuffer *out) {
|
|
332
|
+
if (out != NULL) *out = vault_agent_log_path();
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
void ruby_vault_agent_log_destination(RevaultBuffer *out) {
|
|
336
|
+
if (out != NULL) *out = vault_agent_log_destination();
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
void ruby_vault_agent_get_vault_unlock_key(const char *vault_id, size_t vault_id_len, RevaultBuffer *out) {
|
|
340
|
+
if (out != NULL) *out = vault_agent_get_vault_unlock_key(vault_id, vault_id_len);
|
|
341
|
+
}
|
|
Binary file
|
|
Binary file
|
data/revault_api.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: revault_api
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: x64-mingw-ucrt
|
|
6
|
+
authors:
|
|
7
|
+
- OnePub
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-07-16 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: google-protobuf
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '3.25'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '3.25'
|
|
27
|
+
description: Complete class-based reVault lockbox and vault API
|
|
28
|
+
email:
|
|
29
|
+
executables: []
|
|
30
|
+
extensions: []
|
|
31
|
+
extra_rdoc_files: []
|
|
32
|
+
files:
|
|
33
|
+
- LICENSE
|
|
34
|
+
- generated/revault_bindings_pb.rb
|
|
35
|
+
- lib/revault/binding_operations.rb
|
|
36
|
+
- lib/revault/native_library.rb
|
|
37
|
+
- lib/revault/vault.rb
|
|
38
|
+
- native/revault_ruby_shim.c
|
|
39
|
+
- native/windows-x86_64-msvc/revault_api.dll
|
|
40
|
+
- native/windows-x86_64-msvc/revault_ruby_shim.dll
|
|
41
|
+
- revault_api.rb
|
|
42
|
+
homepage: https://github.com/onepub-dev/reVault
|
|
43
|
+
licenses:
|
|
44
|
+
- Nonstandard
|
|
45
|
+
metadata: {}
|
|
46
|
+
post_install_message:
|
|
47
|
+
rdoc_options: []
|
|
48
|
+
require_paths:
|
|
49
|
+
- "."
|
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.1'
|
|
55
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '0'
|
|
60
|
+
requirements: []
|
|
61
|
+
rubygems_version: 3.5.22
|
|
62
|
+
signing_key:
|
|
63
|
+
specification_version: 4
|
|
64
|
+
summary: Ruby Fiddle bindings for reVault
|
|
65
|
+
test_files: []
|