revault_api 0.3.12-aarch64-linux → 0.3.13-aarch64-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 +52 -40
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef8bc574f826ec322e7ba5a3d76372a5d88f044f6b63e5f7df9c419ccfdb671b
|
|
4
|
+
data.tar.gz: 41f1b5e213b18f9afe3a6d91c71dce2a0c856565af43e93f5c60ac1a29574db8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 45fdcfc0e6e573ad0a7750fa1e3d2f0ebf9c87766ee81452290e23e74437f841766cbde86b18d9c594da86ed4e156b01d010bd41d822373c37b551ffe1e8b160
|
|
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,12 +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
|
+
|
|
378
373
|
- [reVault manual](https://docs.revault.onepub.dev/): installation, concepts,
|
|
379
374
|
CLI workflows, language APIs, and operational guidance.
|
|
380
375
|
- [CLI how-to](docs/cli_how_to.md): command examples.
|
|
381
376
|
- [CI/CD with reVault](docs/ci_cd.md): proposed bootstrap and ephemeral CI
|
|
382
377
|
workflow for encrypted deployment secrets.
|
|
383
|
-
- [
|
|
378
|
+
- [Session Agent](docs/lockbox_session_agent.md): temporary Lockbox access
|
|
384
379
|
lifecycle, protocol, and security model.
|
|
385
380
|
- [Archive format](rust/revault_lockbox_api/ARCHIVE_FORMAT.md): lockbox archive details and page
|
|
386
381
|
layout.
|
|
@@ -390,6 +385,9 @@ lockbox.commit()?;
|
|
|
390
385
|
|
|
391
386
|
## Development
|
|
392
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
|
+
|
|
393
391
|
Run the Rust checks:
|
|
394
392
|
|
|
395
393
|
```bash
|
|
@@ -407,13 +405,27 @@ cd rust
|
|
|
407
405
|
cargo xtask generate-api-docs
|
|
408
406
|
```
|
|
409
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
|
+
|
|
410
422
|
## License
|
|
411
423
|
|
|
412
|
-
|
|
424
|
+
reVault Source Available License 1.0 - see [LICENSE](LICENSE).
|
|
413
425
|
|
|
414
426
|
The source remains available for inspection, modification, and redistribution.
|
|
415
427
|
Derivative works must publish their corresponding source code in a publicly
|
|
416
428
|
accessible repository such as GitHub or a similar service. The license also
|
|
417
|
-
restricts third parties from offering
|
|
418
|
-
similar
|
|
429
|
+
restricts third parties from offering reVault, modified reVault, or
|
|
430
|
+
substantially similar reVault-derived functionality as a hosted, managed, or
|
|
419
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: aarch64-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:
|