cryptodb 2.4.3__tar.gz → 2.4.68__tar.gz
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.
- {cryptodb-2.4.3 → cryptodb-2.4.68}/PKG-INFO +13 -11
- {cryptodb-2.4.3 → cryptodb-2.4.68}/README.md +11 -9
- {cryptodb-2.4.3 → cryptodb-2.4.68}/pyproject.toml +8 -2
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/__init__.py +1 -1
- {cryptodb-2.4.3 → cryptodb-2.4.68}/.gitignore +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/LICENSE +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/client/node/README.md +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/client/python/README.md +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/examples/mini-chain/README.md +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/autoindex.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/backends/__init__.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/backends/redis_backend.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/cascade.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/concurrent.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/crypto.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/engine.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/index.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/log.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/merkle.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/mongo.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/proof.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/query.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/redis_compat.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/relations.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/resp2.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/server.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/snapshot.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/sql.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/store.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/python/nedb/wrap_redis.py +0 -0
- {cryptodb-2.4.3 → cryptodb-2.4.68}/rust/nedb-v2/README.md +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cryptodb
|
|
3
|
-
Version: 2.4.
|
|
3
|
+
Version: 2.4.68
|
|
4
4
|
Summary: NEDB — a versioned, self-compressing, time-traveling embedded database (replay-protected, idempotent, relational, searchable) with durable AOF persistence and a server daemon (nedbd).
|
|
5
5
|
Project-URL: Homepage, https://github.com/aiassistsecure/nedb
|
|
6
6
|
Project-URL: Repository, https://github.com/aiassistsecure/nedb
|
|
7
7
|
Author: Eth-Interchained
|
|
8
8
|
License: GPL-3.0-or-later
|
|
9
9
|
License-File: LICENSE
|
|
10
|
-
Keywords: compression,database,dedup,embedded,git,graph,mvcc,persistence,redis,search,server,time-travel,versioning
|
|
10
|
+
Keywords: compression,crypto-database,cryptodb,database,dedup,embedded,git,graph,mvcc,persistence,redis,search,server,time-travel,versioning
|
|
11
11
|
Classifier: Development Status :: 3 - Alpha
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
13
13
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
@@ -19,16 +19,16 @@ Provides-Extra: encryption
|
|
|
19
19
|
Requires-Dist: cryptography>=41; extra == 'encryption'
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
|
|
22
|
-
<h1 align="center">
|
|
22
|
+
<h1 align="center">crypto-database</h1>
|
|
23
23
|
<p align="center"><b>The database that can prove it never lied.</b></p>
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
crypto-database is a **content-addressed, hash-chained, time-traveling** datastore. Every version of every record is an immutable, **BLAKE2b-verified** object in a Merkle DAG — nothing is ever overwritten, and the store can prove its own integrity on demand.
|
|
28
28
|
|
|
29
|
-
If your data is evidence — ledgers, audit trails, provenance, anything you may one day have to *defend* —
|
|
29
|
+
If your data is evidence — ledgers, audit trails, provenance, anything you may one day have to *defend* — crypto-database makes the history itself tamper-evident and replayable.
|
|
30
30
|
|
|
31
|
-
## Why
|
|
31
|
+
## Why crypto-database
|
|
32
32
|
|
|
33
33
|
- 🔒 **Tamper-evident by construction.** `verify()` re-hashes every object against its content address. Flip a single byte on disk and it's caught — silently impossible to forge history.
|
|
34
34
|
- ⏪ **Time-travel is a query.** `AS OF <seq>` returns the exact state at any point. `VALID AS OF <time>` adds bi-temporal validity — *what was true, as of when.*
|
|
@@ -38,17 +38,19 @@ If your data is evidence — ledgers, audit trails, provenance, anything you may
|
|
|
38
38
|
## Install
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
|
-
npm install
|
|
42
|
-
pip install cryptodb
|
|
43
|
-
cargo add
|
|
41
|
+
npm install crypto-database # Node (native addon)
|
|
42
|
+
pip install cryptodb # Python ← note the PyPI name
|
|
43
|
+
cargo add crypto-database # Rust
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
+
> **Why the split name?** `crypto-database` was already taken on PyPI by an unrelated project, so the Python distribution keeps the original `cryptodb` name there. npm and crates.io publish as `crypto-database`. Same engine, same version, same code — only the registry labels differ.
|
|
47
|
+
|
|
46
48
|
## Reach for it when
|
|
47
49
|
|
|
48
50
|
Audit logs · financial & token ledgers · compliance trails · supply-chain provenance · anything where **provable, replayable history is the product**, not a nice-to-have.
|
|
49
51
|
|
|
50
52
|
```js
|
|
51
|
-
import { NedbCore } from "
|
|
53
|
+
import { NedbCore } from "crypto-database";
|
|
52
54
|
const db = new NedbCore();
|
|
53
55
|
db.put("ledger", "acct:alice", JSON.stringify({ balance: 100 }));
|
|
54
56
|
db.put("ledger", "acct:alice", JSON.stringify({ balance: 250 }));
|
|
@@ -58,4 +60,4 @@ db.verify(); // → true: nothing was tampered
|
|
|
58
60
|
|
|
59
61
|
---
|
|
60
62
|
|
|
61
|
-
<sub>CryptoDB is a distribution of the **NEDB** engine, tuned for verifiability. Engine development happens upstream at [Eth-Interchained/nedb](https://github.com/Eth-Interchained/nedb). © Interchained LLC.</sub>
|
|
63
|
+
<sub>crypto-database (previously `CryptoDB`) is a distribution of the **NEDB** engine, tuned for verifiability. Engine development happens upstream at [Eth-Interchained/nedb](https://github.com/Eth-Interchained/nedb). © Interchained LLC.</sub>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<h1 align="center">
|
|
1
|
+
<h1 align="center">crypto-database</h1>
|
|
2
2
|
<p align="center"><b>The database that can prove it never lied.</b></p>
|
|
3
3
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
crypto-database is a **content-addressed, hash-chained, time-traveling** datastore. Every version of every record is an immutable, **BLAKE2b-verified** object in a Merkle DAG — nothing is ever overwritten, and the store can prove its own integrity on demand.
|
|
7
7
|
|
|
8
|
-
If your data is evidence — ledgers, audit trails, provenance, anything you may one day have to *defend* —
|
|
8
|
+
If your data is evidence — ledgers, audit trails, provenance, anything you may one day have to *defend* — crypto-database makes the history itself tamper-evident and replayable.
|
|
9
9
|
|
|
10
|
-
## Why
|
|
10
|
+
## Why crypto-database
|
|
11
11
|
|
|
12
12
|
- 🔒 **Tamper-evident by construction.** `verify()` re-hashes every object against its content address. Flip a single byte on disk and it's caught — silently impossible to forge history.
|
|
13
13
|
- ⏪ **Time-travel is a query.** `AS OF <seq>` returns the exact state at any point. `VALID AS OF <time>` adds bi-temporal validity — *what was true, as of when.*
|
|
@@ -17,17 +17,19 @@ If your data is evidence — ledgers, audit trails, provenance, anything you may
|
|
|
17
17
|
## Install
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm install
|
|
21
|
-
pip install cryptodb
|
|
22
|
-
cargo add
|
|
20
|
+
npm install crypto-database # Node (native addon)
|
|
21
|
+
pip install cryptodb # Python ← note the PyPI name
|
|
22
|
+
cargo add crypto-database # Rust
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
> **Why the split name?** `crypto-database` was already taken on PyPI by an unrelated project, so the Python distribution keeps the original `cryptodb` name there. npm and crates.io publish as `crypto-database`. Same engine, same version, same code — only the registry labels differ.
|
|
26
|
+
|
|
25
27
|
## Reach for it when
|
|
26
28
|
|
|
27
29
|
Audit logs · financial & token ledgers · compliance trails · supply-chain provenance · anything where **provable, replayable history is the product**, not a nice-to-have.
|
|
28
30
|
|
|
29
31
|
```js
|
|
30
|
-
import { NedbCore } from "
|
|
32
|
+
import { NedbCore } from "crypto-database";
|
|
31
33
|
const db = new NedbCore();
|
|
32
34
|
db.put("ledger", "acct:alice", JSON.stringify({ balance: 100 }));
|
|
33
35
|
db.put("ledger", "acct:alice", JSON.stringify({ balance: 250 }));
|
|
@@ -37,4 +39,4 @@ db.verify(); // → true: nothing was tampered
|
|
|
37
39
|
|
|
38
40
|
---
|
|
39
41
|
|
|
40
|
-
<sub>CryptoDB is a distribution of the **NEDB** engine, tuned for verifiability. Engine development happens upstream at [Eth-Interchained/nedb](https://github.com/Eth-Interchained/nedb). © Interchained LLC.</sub>
|
|
42
|
+
<sub>crypto-database (previously `CryptoDB`) is a distribution of the **NEDB** engine, tuned for verifiability. Engine development happens upstream at [Eth-Interchained/nedb](https://github.com/Eth-Interchained/nedb). © Interchained LLC.</sub>
|
|
@@ -4,20 +4,26 @@
|
|
|
4
4
|
# Rust core (rust/) remains for the napi (npm) addon and future native PyPI
|
|
5
5
|
# acceleration, reintroduced additively; `nedb._native` already imports lazily
|
|
6
6
|
# and the package works identically without it.
|
|
7
|
+
#
|
|
8
|
+
# NOTE: the PyPI distribution name stays `cryptodb` because `crypto-database` is
|
|
9
|
+
# already taken on PyPI by an unrelated third-party project. The npm and crates.io
|
|
10
|
+
# distributions publish as `crypto-database`; PyPI stays `cryptodb`. Same engine,
|
|
11
|
+
# same version, same code — split registry identity by necessity.
|
|
7
12
|
[build-system]
|
|
8
13
|
requires = ["hatchling"]
|
|
9
14
|
build-backend = "hatchling.build"
|
|
10
15
|
|
|
11
16
|
[project]
|
|
12
17
|
name = "cryptodb"
|
|
13
|
-
version = "2.4.
|
|
18
|
+
version = "2.4.68"
|
|
14
19
|
description = "NEDB — a versioned, self-compressing, time-traveling embedded database (replay-protected, idempotent, relational, searchable) with durable AOF persistence and a server daemon (nedbd)."
|
|
15
20
|
readme = "README.md"
|
|
16
21
|
requires-python = ">=3.8"
|
|
17
22
|
license = { text = "GPL-3.0-or-later" }
|
|
18
23
|
authors = [{ name = "Eth-Interchained" }]
|
|
19
24
|
keywords = ["database", "embedded", "mvcc", "time-travel", "versioning",
|
|
20
|
-
"compression", "dedup", "graph", "search", "redis", "git", "persistence", "server"
|
|
25
|
+
"compression", "dedup", "graph", "search", "redis", "git", "persistence", "server",
|
|
26
|
+
"cryptodb", "crypto-database"]
|
|
21
27
|
classifiers = [
|
|
22
28
|
"Development Status :: 3 - Alpha",
|
|
23
29
|
"Intended Audience :: Developers",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|