revault_api 0.3.11-x86_64-linux → 0.3.13-x86_64-linux
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 +4 -4
- data/LICENSE +2 -2
- data/README.md +54 -40
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c1fe3afd024c7fe6cdb54b0fe418e8ca9ee5e499610b56a605f7ecb68451207f
|
|
4
|
+
data.tar.gz: 41f1b5e213b18f9afe3a6d91c71dce2a0c856565af43e93f5c60ac1a29574db8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 795cb1cef186ab985dfab3e8b24e63a05d5c845c1de242afe0eefc00875fc260b92ceef09a3b2f7661457aa7351f57144173ff0038064ffdd3657e014755867f
|
|
7
|
+
data.tar.gz: 4c68bd4e1394b622410cfd022a4a73a13b8dfee65c411eadb7fa1ab8fe1762940936f0b91d5150be73fbe729b2dc1454c1836294492b6f1ea7b3d8415b525f0a
|
data/LICENSE
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
reVault Source Available License 1.0
|
|
2
2
|
|
|
3
3
|
Copyright (c) 2021 OnePub IP Pty Ltd
|
|
4
4
|
|
|
5
|
-
This license applies to the
|
|
5
|
+
This license applies to the reVault software and associated documentation files
|
|
6
6
|
(the "Software").
|
|
7
7
|
|
|
8
8
|
1. Grant of Rights
|
data/README.md
CHANGED
|
@@ -1,46 +1,36 @@
|
|
|
1
|
-
# reVault
|
|
1
|
+
# reVault
|
|
2
2
|
|
|
3
|
-
reVault
|
|
3
|
+
reVault is a fast, local toolkit for creating secure portable archives called
|
|
4
|
+
Lockboxes. Each Lockbox is encrypted, compressed, and signed. It can store:
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
* files and directory trees
|
|
7
|
+
* file permissions and symbolic links
|
|
8
|
+
* variables such as API keys
|
|
9
|
+
* forms such as login details
|
|
6
10
|
|
|
7
|
-
|
|
11
|
+
Lockboxes are easy to copy, share, and back up, and they do not require a
|
|
12
|
+
hosted service. The engine is designed for speed and effective compression.
|
|
13
|
+
Applications can read, write, and seek within stored files without extracting
|
|
14
|
+
the archive, and recover data from partial corruption.
|
|
8
15
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
* directories
|
|
12
|
-
* symlinks
|
|
13
|
-
* file/directory permissions
|
|
14
|
-
* variables
|
|
15
|
-
* forms (collection of variables)
|
|
16
|
+
Read the [reVault manual](https://docs.revault.onepub.dev/) for the quick start,
|
|
17
|
+
core concepts, and security model.
|
|
16
18
|
|
|
19
|
+
reVault runs on Linux, macOS, and Windows. You can use it through the command
|
|
20
|
+
line interface or through libraries for supported programming languages.
|
|
17
21
|
|
|
18
|
-
|
|
19
|
-
techniques.
|
|
22
|
+
The main components are:
|
|
20
23
|
|
|
21
|
-
|
|
22
|
-
|
|
24
|
+
* `revault_cli` for everyday command line use
|
|
25
|
+
* `revault_lockbox_api` for creating and working with Lockboxes
|
|
26
|
+
* `revault_vault_api` for creating and managing Vaults
|
|
23
27
|
|
|
24
|
-
|
|
28
|
+
## The main concepts
|
|
25
29
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
- `revault_cli`, a CLI for everyday use.
|
|
34
|
-
- `revault_lockbox_api`, for creating lockboxes.
|
|
35
|
-
- `revault_vault_api`, for creating and managing vaults.
|
|
36
|
-
|
|
37
|
-
Terminology is explicit:
|
|
38
|
-
|
|
39
|
-
- A **lockbox** is a portable archive and uses the `.lbox` extension.
|
|
40
|
-
- A **key** is used to lock and unlock lockboxes. Keys are more secure than passwords.
|
|
41
|
-
- A **vault** is where we store information about lockboxes such as the keys
|
|
42
|
-
used to open and close a lockbox. The vault also holds a contact list which helps us share
|
|
43
|
-
lockboxes with other people.
|
|
30
|
+
* A **Lockbox** is a portable archive with the `.lbox` extension.
|
|
31
|
+
* A **key** or password controls who can open a Lockbox.
|
|
32
|
+
* A **Vault** stores local profiles, contacts, keys, and remembered access to
|
|
33
|
+
Lockboxes.
|
|
44
34
|
|
|
45
35
|
|
|
46
36
|
> **Pre-release:** the Rust implementation is currently alpha software. The
|
|
@@ -356,8 +346,8 @@ let reopened = Lockbox::open(
|
|
|
356
346
|
let file = reopened.get_file(&LockboxPath::new("/docs/a.txt")?)?;
|
|
357
347
|
```
|
|
358
348
|
|
|
359
|
-
Use `revault_vault_api` for native applications that want the
|
|
360
|
-
|
|
349
|
+
Use `revault_vault_api` for native applications that want the Vault and
|
|
350
|
+
Session Agent behavior:
|
|
361
351
|
|
|
362
352
|
```rust
|
|
363
353
|
use revault_vault_api::{local_vault, SecretString};
|
|
@@ -375,10 +365,17 @@ lockbox.commit()?;
|
|
|
375
365
|
|
|
376
366
|
## Documentation
|
|
377
367
|
|
|
368
|
+
Performance results for Lockbox using the published pure-Rust
|
|
369
|
+
`zstd-complete 0.1.0` crate, compared with encrypted GPG and unencrypted ZIP,
|
|
370
|
+
are documented in the
|
|
371
|
+
[benchmark report](docs/lockbox_gpg_zip_benchmark_2026_08_30.md).
|
|
372
|
+
|
|
373
|
+
- [reVault manual](https://docs.revault.onepub.dev/): installation, concepts,
|
|
374
|
+
CLI workflows, language APIs, and operational guidance.
|
|
378
375
|
- [CLI how-to](docs/cli_how_to.md): command examples.
|
|
379
376
|
- [CI/CD with reVault](docs/ci_cd.md): proposed bootstrap and ephemeral CI
|
|
380
377
|
workflow for encrypted deployment secrets.
|
|
381
|
-
- [
|
|
378
|
+
- [Session Agent](docs/lockbox_session_agent.md): temporary Lockbox access
|
|
382
379
|
lifecycle, protocol, and security model.
|
|
383
380
|
- [Archive format](rust/revault_lockbox_api/ARCHIVE_FORMAT.md): lockbox archive details and page
|
|
384
381
|
layout.
|
|
@@ -388,6 +385,9 @@ lockbox.commit()?;
|
|
|
388
385
|
|
|
389
386
|
## Development
|
|
390
387
|
|
|
388
|
+
Follow the [reVault terminology standard](docs/terminology.md) when updating
|
|
389
|
+
the manual, READMEs, CLI help, API guides, or other user-facing material.
|
|
390
|
+
|
|
391
391
|
Run the Rust checks:
|
|
392
392
|
|
|
393
393
|
```bash
|
|
@@ -405,13 +405,27 @@ cd rust
|
|
|
405
405
|
cargo xtask generate-api-docs
|
|
406
406
|
```
|
|
407
407
|
|
|
408
|
+
### Release checklist
|
|
409
|
+
|
|
410
|
+
Before publishing a component:
|
|
411
|
+
|
|
412
|
+
1. update its version and package README;
|
|
413
|
+
2. regenerate class and method documentation;
|
|
414
|
+
3. run the binding conformance examples;
|
|
415
|
+
4. run the manual validation job;
|
|
416
|
+
5. confirm migration notes and compatibility statements; and
|
|
417
|
+
6. retain the tagged repository documentation as the release snapshot.
|
|
418
|
+
|
|
419
|
+
For complete procedures, read the [CLI distribution guide](docs/cli_distribution.md)
|
|
420
|
+
and the [binding contribution and release guide](bindings/CONTRIBUTING.md).
|
|
421
|
+
|
|
408
422
|
## License
|
|
409
423
|
|
|
410
|
-
|
|
424
|
+
reVault Source Available License 1.0 - see [LICENSE](LICENSE).
|
|
411
425
|
|
|
412
426
|
The source remains available for inspection, modification, and redistribution.
|
|
413
427
|
Derivative works must publish their corresponding source code in a publicly
|
|
414
428
|
accessible repository such as GitHub or a similar service. The license also
|
|
415
|
-
restricts third parties from offering
|
|
416
|
-
similar
|
|
429
|
+
restricts third parties from offering reVault, modified reVault, or
|
|
430
|
+
substantially similar reVault-derived functionality as a hosted, managed, or
|
|
417
431
|
network-accessible service without a separate written license.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: revault_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.13
|
|
5
5
|
platform: x86_64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- OnePub
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Complete class-based reVault lockbox and vault API
|
|
14
14
|
email:
|
|
@@ -19,14 +19,14 @@ extra_rdoc_files: []
|
|
|
19
19
|
files:
|
|
20
20
|
- LICENSE
|
|
21
21
|
- README.md
|
|
22
|
-
homepage: https://
|
|
22
|
+
homepage: https://docs.revault.onepub.dev/
|
|
23
23
|
licenses:
|
|
24
24
|
- Nonstandard
|
|
25
25
|
metadata:
|
|
26
26
|
bug_tracker_uri: https://github.com/onepub-dev/reVault/issues
|
|
27
|
-
changelog_uri: https://github.com/onepub-dev/reVault/blob/
|
|
28
|
-
documentation_uri: https://
|
|
29
|
-
source_code_uri: https://github.com/onepub-dev/reVault/tree/
|
|
27
|
+
changelog_uri: https://github.com/onepub-dev/reVault/blob/main/bindings/CHANGELOG.md
|
|
28
|
+
documentation_uri: https://docs.revault.onepub.dev/
|
|
29
|
+
source_code_uri: https://github.com/onepub-dev/reVault/tree/main/bindings/ruby
|
|
30
30
|
post_install_message:
|
|
31
31
|
rdoc_options: []
|
|
32
32
|
require_paths:
|