revault_api 0.3.11-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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +2 -2
  3. data/README.md +54 -40
  4. metadata +6 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f72558a79704a778983092da82d35b87ce5b59e3111058497b9c2c1df21b57c
4
- data.tar.gz: 7a375c8d62ebf40aa2f12fa67eb8e18b2dede7c283b9e06da20be11c7c2fcd73
3
+ metadata.gz: ef8bc574f826ec322e7ba5a3d76372a5d88f044f6b63e5f7df9c419ccfdb671b
4
+ data.tar.gz: 41f1b5e213b18f9afe3a6d91c71dce2a0c856565af43e93f5c60ac1a29574db8
5
5
  SHA512:
6
- metadata.gz: 910c8e91fed4bfa512f32fc93c55f2b0d12f9c59c099450e52ea36261a584e1ceed91939705c91b7b9684fd35b2a0236ca7264712ab637f8dc0a3667a4a752e3
7
- data.tar.gz: 271841730c5d8cf876a7fc58a283cff6e5347779d9e5f1577de8a33f9b2729f06b39bdda1c0db8e5766373fb63a5513408ba6630d7d252427d8fe5c0eb88ba2b
6
+ metadata.gz: 45fdcfc0e6e573ad0a7750fa1e3d2f0ebf9c87766ee81452290e23e74437f841766cbde86b18d9c594da86ed4e156b01d010bd41d822373c37b551ffe1e8b160
7
+ data.tar.gz: 4c68bd4e1394b622410cfd022a4a73a13b8dfee65c411eadb7fa1ab8fe1762940936f0b91d5150be73fbe729b2dc1454c1836294492b6f1ea7b3d8415b525f0a
data/LICENSE CHANGED
@@ -1,8 +1,8 @@
1
- Dvault Source Available License 1.0
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 dvault software and associated documentation files
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 / Lockbox
1
+ # reVault
2
2
 
3
- reVault creates portable archives that are secure and compressed.
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
- The reVault archives are called 'Lockboxes'.
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
- You can think of a Lockbox as a zip file on steriods.
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
- A Lockbox can be used to store:
10
- * files
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
- A lockbox is encrypted, compressed and signed using modern encryption and compress
19
- techniques.
22
+ The main components are:
20
23
 
21
- reVault is designed to be simple and safe to use, avoiding overly complex
22
- terminology.
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
- reVault works on Linux, Windows and MacOS.
28
+ ## The main concepts
25
29
 
26
- reVault ships as a:
27
- * cli
28
- * apis
29
- * libraries for multiple languages
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 local vault and
360
- open-cache behavior:
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
- - [Lockbox Session Agent](docs/lockbox_session_agent.md): local open cache
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
- Dvault Source Available License 1.0 - see [LICENSE](LICENSE).
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 dvault, modified dvault, or substantially
416
- similar dvault-derived functionality as a hosted, managed, or
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.11
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-25 00:00:00.000000000 Z
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://github.com/onepub-dev/reVault
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/master/bindings/CHANGELOG.md
28
- documentation_uri: https://github.com/onepub-dev/reVault/tree/master/docs
29
- source_code_uri: https://github.com/onepub-dev/reVault/tree/master/bindings/ruby
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: