keri 2.0.0.dev3__tar.gz → 2.0.0.dev6__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.
- {keri-2.0.0.dev3/src/keri.egg-info → keri-2.0.0.dev6}/PKG-INFO +26 -25
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/README.md +4 -4
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/setup.py +32 -37
- keri-2.0.0.dev6/src/keri/__init__.py +48 -0
- keri-2.0.0.dev6/src/keri/acdc/__init__.py +13 -0
- keri-2.0.0.dev6/src/keri/acdc/acdcing.py +8 -0
- keri-2.0.0.dev6/src/keri/acdc/containing.py +8 -0
- keri-2.0.0.dev6/src/keri/acdc/ipexing.py +604 -0
- keri-2.0.0.dev6/src/keri/acdc/messaging.py +1013 -0
- keri-2.0.0.dev6/src/keri/acdc/regbasing.py +114 -0
- keri-2.0.0.dev6/src/keri/acdc/registering.py +9 -0
- keri-2.0.0.dev6/src/keri/acdc/registraring.py +8 -0
- keri-2.0.0.dev6/src/keri/acdc/registring.py +8 -0
- keri-2.0.0.dev6/src/keri/acdc/scheming.py +8 -0
- keri-2.0.0.dev6/src/keri/acdc/webregbasing.py +221 -0
- keri-2.0.0.dev6/src/keri/app/__init__.py +46 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/agenting.py +269 -290
- keri-2.0.0.dev6/src/keri/app/apping.py +108 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/challenging.py +2 -2
- keri-2.0.0.dev6/src/keri/app/configing.py +260 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/delegating.py +92 -68
- keri-2.0.0.dev6/src/keri/app/directing.py +611 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/forwarding.py +196 -74
- keri-2.0.0.dev6/src/keri/app/grouping.py +1039 -0
- keri-2.0.0.dev6/src/keri/app/habbing.py +4014 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/httping.py +57 -23
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/indirecting.py +288 -296
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/keeping.py +198 -156
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/notifying.py +75 -104
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/oobiing.py +201 -194
- keri-2.0.0.dev3/src/keri/app/connecting.py → keri-2.0.0.dev6/src/keri/app/organizing.py +99 -34
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/querying.py +53 -21
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/signaling.py +52 -50
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/signing.py +13 -25
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/specing.py +1 -1
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/storing.py +51 -69
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/watching.py +4 -9
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/__init__.py +2 -1
- keri-2.0.0.dev6/src/keri/cli/commands/__init__.py +32 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/aid.py +11 -14
- keri-2.0.0.dev6/src/keri/cli/commands/challenge/__init__.py +10 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/challenge/generate.py +4 -3
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/challenge/respond.py +33 -24
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/challenge/verify.py +36 -30
- keri-2.0.0.dev6/src/keri/cli/commands/clean.py +58 -0
- keri-2.0.0.dev6/src/keri/cli/commands/contacts/__init__.py +15 -0
- keri-2.0.0.dev6/src/keri/cli/commands/contacts/add.py +119 -0
- keri-2.0.0.dev6/src/keri/cli/commands/contacts/delete.py +93 -0
- keri-2.0.0.dev6/src/keri/cli/commands/contacts/find.py +64 -0
- keri-2.0.0.dev6/src/keri/cli/commands/contacts/get.py +105 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/contacts/list.py +13 -18
- keri-2.0.0.dev6/src/keri/cli/commands/contacts/query.py +137 -0
- keri-2.0.0.dev6/src/keri/cli/commands/contacts/rename.py +86 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/contacts/replace.py +12 -15
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/decrypt.py +12 -14
- keri-2.0.0.dev6/src/keri/cli/commands/delegate/__init__.py +9 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/delegate/confirm.py +97 -51
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/delegate/request.py +29 -25
- keri-2.0.0.dev6/src/keri/cli/commands/did/__init__.py +8 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/did/generate.py +17 -26
- keri-2.0.0.dev6/src/keri/cli/commands/ends/__init__.py +10 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ends/add.py +51 -34
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ends/export.py +18 -20
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ends/list.py +13 -14
- keri-2.0.0.dev6/src/keri/cli/commands/escrow/__init__.py +15 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/escrow/clear.py +11 -14
- keri-2.0.0.dev6/src/keri/cli/commands/escrow/list.py +269 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/event.py +11 -14
- keri-2.0.0.dev6/src/keri/cli/commands/exn/__init__.py +8 -0
- keri-2.0.0.dev6/src/keri/cli/commands/exn/send.py +148 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/export.py +17 -23
- keri-2.0.0.dev3/src/keri/app/cli/commands/import.py → keri-2.0.0.dev6/src/keri/cli/commands/import_.py +15 -18
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/incept.py +67 -30
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/init.py +36 -35
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/interact.py +25 -20
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/introduce.py +24 -25
- keri-2.0.0.dev6/src/keri/cli/commands/ipex/__init__.py +12 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/admit.py +42 -40
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/agree.py +2 -2
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/apply.py +2 -2
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/grant.py +41 -34
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/join.py +50 -46
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/list.py +46 -47
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/offer.py +3 -2
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/spurn.py +41 -41
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/kevers.py +17 -20
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/list.py +8 -11
- keri-2.0.0.dev6/src/keri/cli/commands/local/__init__.py +8 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/local/watch.py +17 -25
- keri-2.0.0.dev6/src/keri/cli/commands/location/__init__.py +8 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/location/add.py +44 -34
- keri-2.0.0.dev6/src/keri/cli/commands/mailbox/__init__.py +11 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/add.py +23 -23
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/debug.py +20 -20
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/list.py +14 -17
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/update.py +11 -15
- keri-2.0.0.dev6/src/keri/cli/commands/migrate/__init__.py +10 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/migrate/list.py +9 -18
- keri-2.0.0.dev6/src/keri/cli/commands/migrate/run.py +57 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/migrate/show.py +10 -21
- keri-2.0.0.dev6/src/keri/cli/commands/multisig/__init__.py +16 -0
- keri-2.0.0.dev6/src/keri/cli/commands/multisig/continue_.py +83 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/demo.py +5 -4
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/incept.py +76 -42
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/interact.py +54 -38
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/join.py +207 -131
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/notice.py +31 -37
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/rotate.py +79 -63
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/shell.py +18 -19
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/update.py +23 -26
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/nonce.py +3 -3
- keri-2.0.0.dev6/src/keri/cli/commands/notifications/__init__.py +11 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/notifications/list.py +21 -22
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/notifications/mark.py +19 -20
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/notifications/rem.py +19 -20
- keri-2.0.0.dev6/src/keri/cli/commands/oobi/__init__.py +11 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/oobi/clean.py +9 -13
- keri-2.0.0.dev6/src/keri/cli/commands/oobi/generate.py +87 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/oobi/resolve.py +22 -28
- keri-2.0.0.dev6/src/keri/cli/commands/passcode/__init__.py +11 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/passcode/generate.py +1 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/passcode/remove.py +10 -13
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/passcode/set.py +11 -16
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/query.py +33 -33
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/rename.py +10 -13
- keri-2.0.0.dev6/src/keri/cli/commands/rollback.py +103 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/rotate.py +33 -26
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/saidify.py +6 -5
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/salt.py +3 -2
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/sign.py +8 -12
- keri-2.0.0.dev6/src/keri/cli/commands/ssh/__init__.py +9 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ssh/export.py +11 -15
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/status.py +14 -18
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/time.py +2 -1
- keri-2.0.0.dev6/src/keri/cli/commands/vc/__init__.py +13 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/create.py +63 -52
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/export.py +22 -24
- keri-2.0.0.dev6/src/keri/cli/commands/vc/import_.py +96 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/list.py +29 -26
- keri-2.0.0.dev6/src/keri/cli/commands/vc/registry/__init__.py +11 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/registry/incept.py +57 -35
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/registry/list.py +11 -14
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/registry/status.py +18 -19
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/revoke.py +48 -45
- keri-2.0.0.dev6/src/keri/cli/commands/vc/schema/__init__.py +8 -0
- keri-2.0.0.dev6/src/keri/cli/commands/vc/schema/import_.py +87 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/verify.py +12 -16
- keri-2.0.0.dev6/src/keri/cli/commands/version.py +37 -0
- keri-2.0.0.dev6/src/keri/cli/commands/watcher/__init__.py +10 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/watcher/add.py +29 -32
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/watcher/adjudicate.py +26 -26
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/watcher/list.py +14 -17
- keri-2.0.0.dev6/src/keri/cli/commands/witness/__init__.py +12 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/witness/authenticate.py +27 -27
- keri-2.0.0.dev6/src/keri/cli/commands/witness/demo.py +104 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/witness/list.py +10 -14
- keri-2.0.0.dev6/src/keri/cli/commands/witness/start.py +155 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/witness/submit.py +20 -22
- keri-2.0.0.dev6/src/keri/cli/common/__init__.py +13 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/config.py +3 -3
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/displaying.py +18 -22
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/existing.py +17 -13
- keri-2.0.0.dev6/src/keri/cli/common/parsing.py +139 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/rotating.py +7 -0
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/terming.py +1 -1
- {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/kli.py +6 -4
- keri-2.0.0.dev6/src/keri/core/__init__.py +48 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/annotating.py +6 -24
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/coring.py +628 -808
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/counting.py +336 -292
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/eventing.py +2229 -1827
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/indexing.py +22 -27
- keri-2.0.0.dev6/src/keri/core/kraming.py +2182 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/mapping.py +708 -50
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/parsing.py +1017 -623
- keri-2.0.0.dev6/src/keri/core/routing.py +651 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/scheming.py +64 -24
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/serdering.py +638 -381
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/signing.py +129 -194
- keri-2.0.0.dev6/src/keri/core/structing.py +1910 -0
- keri-2.0.0.dev6/src/keri/db/__init__.py +26 -0
- keri-2.0.0.dev6/src/keri/db/basing.py +2235 -0
- keri-2.0.0.dev6/src/keri/db/dbing.py +3314 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/db/escrowing.py +73 -38
- keri-2.0.0.dev6/src/keri/db/koming.py +776 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/db/migrations/add_key_and_reg_state_schemas.py +24 -23
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/db/migrations/hab_data_rename.py +10 -8
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/db/migrations/rekey_habs.py +11 -10
- keri-2.0.0.dev6/src/keri/db/subing.py +3613 -0
- keri-2.0.0.dev6/src/keri/db/webdbing.py +2308 -0
- keri-2.0.0.dev6/src/keri/demo/__init__.py +9 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/demo/demo_bob.py +3 -10
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/demo/demo_eve.py +3 -7
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/demo/demo_kev.py +1 -1
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/demo/demo_sam.py +3 -9
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/demo/demoing.py +52 -38
- keri-2.0.0.dev6/src/keri/end/__init__.py +16 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/end/ending.py +125 -142
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/end/priming.py +8 -14
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/help/__init__.py +6 -2
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/help/helping.py +45 -76
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/kering.py +73 -26
- keri-2.0.0.dev6/src/keri/peer/__init__.py +9 -0
- keri-2.0.0.dev6/src/keri/peer/exchanging.py +849 -0
- keri-2.0.0.dev6/src/keri/recording.py +532 -0
- keri-2.0.0.dev6/src/keri/spac/__init__.py +6 -0
- keri-2.0.0.dev6/src/keri/spac/payloading.py +116 -0
- keri-2.0.0.dev6/src/keri/vc/__init__.py +10 -0
- keri-2.0.0.dev6/src/keri/vc/protocoling.py +483 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/vc/proving.py +11 -20
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/vc/walleting.py +16 -31
- keri-2.0.0.dev6/src/keri/vdr/__init__.py +16 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/vdr/credentialing.py +370 -260
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/vdr/eventing.py +878 -398
- keri-2.0.0.dev6/src/keri/vdr/vdring.py +86 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/vdr/verifying.py +172 -60
- {keri-2.0.0.dev3 → keri-2.0.0.dev6/src/keri.egg-info}/PKG-INFO +26 -25
- keri-2.0.0.dev6/src/keri.egg-info/SOURCES.txt +225 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri.egg-info/entry_points.txt +2 -2
- keri-2.0.0.dev6/src/keri.egg-info/requires.txt +23 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/tests/test_kering.py +39 -34
- keri-2.0.0.dev3/src/keri/__init__.py +0 -5
- keri-2.0.0.dev3/src/keri/app/__init__.py +0 -7
- keri-2.0.0.dev3/src/keri/app/apping.py +0 -95
- keri-2.0.0.dev3/src/keri/app/cli/commands/challenge/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/clean.py +0 -68
- keri-2.0.0.dev3/src/keri/app/cli/commands/contacts/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/delegate/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/did/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/ends/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/escrow/__init__.py +0 -3
- keri-2.0.0.dev3/src/keri/app/cli/commands/escrow/list.py +0 -159
- keri-2.0.0.dev3/src/keri/app/cli/commands/ipex/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/local/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/location/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/mailbox/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/migrate/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/migrate/run.py +0 -65
- keri-2.0.0.dev3/src/keri/app/cli/commands/multisig/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/multisig/continue.py +0 -78
- keri-2.0.0.dev3/src/keri/app/cli/commands/notifications/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/oobi/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/oobi/generate.py +0 -93
- keri-2.0.0.dev3/src/keri/app/cli/commands/passcode/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/rollback.py +0 -107
- keri-2.0.0.dev3/src/keri/app/cli/commands/ssh/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/vc/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/vc/registry/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/version.py +0 -42
- keri-2.0.0.dev3/src/keri/app/cli/commands/watcher/__init__.py +0 -6
- keri-2.0.0.dev3/src/keri/app/cli/commands/witness/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/commands/witness/demo.py +0 -87
- keri-2.0.0.dev3/src/keri/app/cli/commands/witness/start.py +0 -115
- keri-2.0.0.dev3/src/keri/app/cli/common/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/app/cli/common/incepting.py +0 -33
- keri-2.0.0.dev3/src/keri/app/configing.py +0 -235
- keri-2.0.0.dev3/src/keri/app/directing.py +0 -668
- keri-2.0.0.dev3/src/keri/app/grouping.py +0 -699
- keri-2.0.0.dev3/src/keri/app/habbing.py +0 -2903
- keri-2.0.0.dev3/src/keri/core/__init__.py +0 -24
- keri-2.0.0.dev3/src/keri/core/routing.py +0 -608
- keri-2.0.0.dev3/src/keri/core/structing.py +0 -1335
- keri-2.0.0.dev3/src/keri/db/__init__.py +0 -5
- keri-2.0.0.dev3/src/keri/db/basing.py +0 -3195
- keri-2.0.0.dev3/src/keri/db/dbing.py +0 -2132
- keri-2.0.0.dev3/src/keri/db/koming.py +0 -821
- keri-2.0.0.dev3/src/keri/db/migrations/__init__.py +0 -0
- keri-2.0.0.dev3/src/keri/db/subing.py +0 -2517
- keri-2.0.0.dev3/src/keri/demo/__init__.py +0 -7
- keri-2.0.0.dev3/src/keri/end/__init__.py +0 -8
- keri-2.0.0.dev3/src/keri/peer/__init__.py +0 -8
- keri-2.0.0.dev3/src/keri/peer/exchanging.py +0 -696
- keri-2.0.0.dev3/src/keri/vc/__init__.py +0 -6
- keri-2.0.0.dev3/src/keri/vc/messaging.py +0 -458
- keri-2.0.0.dev3/src/keri/vc/protocoling.py +0 -332
- keri-2.0.0.dev3/src/keri/vdr/__init__.py +0 -7
- keri-2.0.0.dev3/src/keri/vdr/viring.py +0 -1044
- keri-2.0.0.dev3/src/keri.egg-info/SOURCES.txt +0 -199
- keri-2.0.0.dev3/src/keri.egg-info/requires.txt +0 -22
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/LICENSE +0 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/setup.cfg +0 -0
- {keri-2.0.0.dev3/src/keri/app/cli/commands → keri-2.0.0.dev6/src/keri/db/migrations}/__init__.py +0 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri.egg-info/dependency_links.txt +0 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri.egg-info/not-zip-safe +0 -0
- {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: keri
|
|
3
|
-
Version: 2.0.0.
|
|
3
|
+
Version: 2.0.0.dev6
|
|
4
4
|
Summary: Key Event Receipt Infrastructure
|
|
5
5
|
Home-page: https://github.com/WebOfTrust/keripy
|
|
6
6
|
Author: Samuel M. Smith
|
|
@@ -15,33 +15,34 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
15
15
|
Classifier: Operating System :: Unix
|
|
16
16
|
Classifier: Operating System :: POSIX
|
|
17
17
|
Classifier: Operating System :: Microsoft :: Windows
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
19
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
20
20
|
Classifier: Topic :: Utilities
|
|
21
|
-
Requires-Python:
|
|
21
|
+
Requires-Python: ~=3.14.0
|
|
22
22
|
License-File: LICENSE
|
|
23
|
-
Requires-Dist: lmdb==1.
|
|
24
|
-
Requires-Dist: pysodium
|
|
25
|
-
Requires-Dist: blake3
|
|
26
|
-
Requires-Dist: msgpack
|
|
27
|
-
Requires-Dist: cbor2
|
|
28
|
-
Requires-Dist: multidict
|
|
29
|
-
Requires-Dist: ordered-set
|
|
30
|
-
Requires-Dist: hio
|
|
31
|
-
Requires-Dist: multicommand
|
|
32
|
-
Requires-Dist: jsonschema
|
|
33
|
-
Requires-Dist: falcon
|
|
34
|
-
Requires-Dist: hjson
|
|
35
|
-
Requires-Dist: PyYaml
|
|
36
|
-
Requires-Dist: apispec
|
|
37
|
-
Requires-Dist: mnemonic
|
|
38
|
-
Requires-Dist: PrettyTable
|
|
39
|
-
Requires-Dist: http_sfv
|
|
40
|
-
Requires-Dist: cryptography
|
|
41
|
-
Requires-Dist: semver
|
|
42
|
-
Requires-Dist: qrcode
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
Requires-Dist:
|
|
23
|
+
Requires-Dist: lmdb==2.1.1
|
|
24
|
+
Requires-Dist: pysodium==0.7.18
|
|
25
|
+
Requires-Dist: blake3==1.0.8
|
|
26
|
+
Requires-Dist: msgpack==1.1.2
|
|
27
|
+
Requires-Dist: cbor2==5.8.0
|
|
28
|
+
Requires-Dist: multidict==6.7.0
|
|
29
|
+
Requires-Dist: ordered-set==4.1.0
|
|
30
|
+
Requires-Dist: hio==0.7.19
|
|
31
|
+
Requires-Dist: multicommand==1.0.0
|
|
32
|
+
Requires-Dist: jsonschema==4.26.0
|
|
33
|
+
Requires-Dist: falcon==4.2.0
|
|
34
|
+
Requires-Dist: hjson==3.1.0
|
|
35
|
+
Requires-Dist: PyYaml==6.0.3
|
|
36
|
+
Requires-Dist: apispec==6.9.0
|
|
37
|
+
Requires-Dist: mnemonic==0.21
|
|
38
|
+
Requires-Dist: PrettyTable==3.17.0
|
|
39
|
+
Requires-Dist: http_sfv==0.9.9
|
|
40
|
+
Requires-Dist: cryptography==46.0.3
|
|
41
|
+
Requires-Dist: semver==3.0.4
|
|
42
|
+
Requires-Dist: qrcode==8.2
|
|
43
|
+
Requires-Dist: sortedcontainers==2.4.0
|
|
44
|
+
Requires-Dist: setuptools==80.9.0
|
|
45
|
+
Requires-Dist: wheel==0.45.1
|
|
45
46
|
Dynamic: author
|
|
46
47
|
Dynamic: author-email
|
|
47
48
|
Dynamic: classifier
|
|
@@ -34,7 +34,7 @@ We use `--pull=never` to ensure that docker does not implicitly pull a remote im
|
|
|
34
34
|
### Dependencies
|
|
35
35
|
#### Binaries
|
|
36
36
|
|
|
37
|
-
python 3.12.
|
|
37
|
+
python 3.14.0+ (Ubuntu 24.04's default Python 3.12.3 is too old for keripy's current `hio` dependency)
|
|
38
38
|
libsodium 1.0.18+
|
|
39
39
|
|
|
40
40
|
|
|
@@ -75,18 +75,18 @@ $ pip3 install -U cbor2
|
|
|
75
75
|
## Development
|
|
76
76
|
|
|
77
77
|
### Setup
|
|
78
|
-
* Ensure Python 3.
|
|
78
|
+
* Ensure Python 3.14.0+ is present along with venv and dev header files;
|
|
79
79
|
* Setup virtual environment: `python3 -m venv keripy`
|
|
80
80
|
* Activate virtual environment: `source keripy/bin/activate`
|
|
81
81
|
* Setup dependencies: `pip install -r requirements.txt`
|
|
82
82
|
|
|
83
83
|
### Testing
|
|
84
|
-
* Install pytest: `pip install pytest`
|
|
84
|
+
* Install pytest and xdist: `pip install pytest pytest-xdist`
|
|
85
85
|
|
|
86
86
|
* Run the test suites:
|
|
87
87
|
|
|
88
88
|
```shell
|
|
89
|
-
pytest tests/ --ignore tests/demo/
|
|
89
|
+
pytest tests/ --ignore tests/demo/ -n auto
|
|
90
90
|
pytest tests/demo/
|
|
91
91
|
```
|
|
92
92
|
|
|
@@ -20,12 +20,6 @@ $ git show v0.6.11
|
|
|
20
20
|
$ git push --tags # pushes tags to default remote
|
|
21
21
|
$ git push wot --tags # pushes tags to wot remote
|
|
22
22
|
|
|
23
|
-
$ git tag -a v0.4.2 -m "bump version"
|
|
24
|
-
$ git push --tags
|
|
25
|
-
$ git checkout -b release_0.4.2
|
|
26
|
-
$ git push --set-upstream origin release_0.4.2
|
|
27
|
-
$ git checkout master
|
|
28
|
-
|
|
29
23
|
Best practices for setup.py and requirements.txt
|
|
30
24
|
https://caremad.io/posts/2013/07/setup-vs-requirement/
|
|
31
25
|
"""
|
|
@@ -37,7 +31,7 @@ from os.path import splitext
|
|
|
37
31
|
from setuptools import find_packages, setup
|
|
38
32
|
setup(
|
|
39
33
|
name='keri',
|
|
40
|
-
version='2.0.0-
|
|
34
|
+
version='2.0.0-dev6', # also change in src/keri/__init__.py
|
|
41
35
|
license='Apache Software License 2.0',
|
|
42
36
|
description='Key Event Receipt Infrastructure',
|
|
43
37
|
long_description="KERI Decentralized Key Management Infrastructure",
|
|
@@ -57,7 +51,7 @@ setup(
|
|
|
57
51
|
'Operating System :: Unix',
|
|
58
52
|
'Operating System :: POSIX',
|
|
59
53
|
'Operating System :: Microsoft :: Windows',
|
|
60
|
-
'Programming Language :: Python :: 3.
|
|
54
|
+
'Programming Language :: Python :: 3.14',
|
|
61
55
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
62
56
|
# uncomment if you test on these interpreters:
|
|
63
57
|
# 'Programming Language :: Python :: Implementation :: PyPy',
|
|
@@ -74,37 +68,39 @@ setup(
|
|
|
74
68
|
keywords=[
|
|
75
69
|
# eg: 'keyword1', 'keyword2', 'keyword3',
|
|
76
70
|
],
|
|
77
|
-
python_requires='
|
|
71
|
+
python_requires='~=3.14.0',
|
|
78
72
|
install_requires=[
|
|
79
|
-
'lmdb==1.
|
|
80
|
-
'pysodium
|
|
81
|
-
'blake3
|
|
82
|
-
'msgpack
|
|
83
|
-
'cbor2
|
|
84
|
-
'multidict
|
|
85
|
-
'ordered-set
|
|
86
|
-
'hio
|
|
87
|
-
'multicommand
|
|
88
|
-
'jsonschema
|
|
89
|
-
'falcon
|
|
90
|
-
'hjson
|
|
91
|
-
'PyYaml
|
|
92
|
-
'apispec
|
|
93
|
-
'mnemonic
|
|
94
|
-
'PrettyTable
|
|
95
|
-
'http_sfv
|
|
96
|
-
'cryptography
|
|
97
|
-
'semver
|
|
98
|
-
'qrcode
|
|
99
|
-
'
|
|
100
|
-
'
|
|
73
|
+
'lmdb==2.1.1',
|
|
74
|
+
'pysodium==0.7.18',
|
|
75
|
+
'blake3==1.0.8',
|
|
76
|
+
'msgpack==1.1.2',
|
|
77
|
+
'cbor2==5.8.0',
|
|
78
|
+
'multidict==6.7.0',
|
|
79
|
+
'ordered-set==4.1.0',
|
|
80
|
+
'hio==0.7.19',
|
|
81
|
+
'multicommand==1.0.0',
|
|
82
|
+
'jsonschema==4.26.0',
|
|
83
|
+
'falcon==4.2.0',
|
|
84
|
+
'hjson==3.1.0',
|
|
85
|
+
'PyYaml==6.0.3',
|
|
86
|
+
'apispec==6.9.0',
|
|
87
|
+
'mnemonic==0.21',
|
|
88
|
+
'PrettyTable==3.17.0',
|
|
89
|
+
'http_sfv==0.9.9',
|
|
90
|
+
'cryptography==46.0.3',
|
|
91
|
+
'semver==3.0.4',
|
|
92
|
+
'qrcode==8.2',
|
|
93
|
+
'sortedcontainers==2.4.0',
|
|
94
|
+
'setuptools==80.9.0',
|
|
95
|
+
'wheel==0.45.1',
|
|
101
96
|
],
|
|
102
97
|
extras_require={
|
|
103
98
|
},
|
|
104
99
|
tests_require=[
|
|
105
|
-
'coverage
|
|
106
|
-
'pytest
|
|
107
|
-
'pytest-shell
|
|
100
|
+
'coverage==7.13.1',
|
|
101
|
+
'pytest==9.0.2',
|
|
102
|
+
'pytest-shell==0.3.2',
|
|
103
|
+
'pytest-xdist==3.8.0',
|
|
108
104
|
],
|
|
109
105
|
setup_requires=[
|
|
110
106
|
],
|
|
@@ -113,9 +109,8 @@ setup(
|
|
|
113
109
|
'keri_bob = keri.demo.demo_bob:main',
|
|
114
110
|
'keri_eve = keri.demo.demo_eve:main',
|
|
115
111
|
'keri_sam = keri.demo.demo_sam:main',
|
|
116
|
-
'kli = keri.
|
|
117
|
-
'klid = keri.
|
|
112
|
+
'kli = keri.cli.kli:main',
|
|
113
|
+
'klid = keri.cli.klid:main',
|
|
118
114
|
]
|
|
119
115
|
},
|
|
120
116
|
)
|
|
121
|
-
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
__version__ = '2.0.0-dev6' # also change in setup.py
|
|
4
|
+
|
|
5
|
+
from .kering import (Vrsn_1_0, Vrsn_2_0, GVC_1_0, GVC_2_0,
|
|
6
|
+
Kinds, Protocols, Schemes, Rever,
|
|
7
|
+
Colds, Ilks, ColdDex, Roles, TraitDex, Version, MaxON,
|
|
8
|
+
VER1FULLSPAN, VER1TERM, VEREX1, VEREX,
|
|
9
|
+
VER2FULLSPAN, VER2TERM, VEREX2, MAXVERFULLSPAN,
|
|
10
|
+
sniff, rematch, versify, deversify, smell,
|
|
11
|
+
Ilkage, ColdCodex, TraitCodex, Smellage,
|
|
12
|
+
Protocolage, KeriError, ClosedError, Kindage,
|
|
13
|
+
ConfigurationError, AuthError, AuthNError,
|
|
14
|
+
AuthZError, DecryptError, DatabaseError,
|
|
15
|
+
MissingEntryError, MaterialError, RawMaterialError,
|
|
16
|
+
SoftMaterialError, EmptyMaterialError, InvalidVersionError,
|
|
17
|
+
InvalidCodeError, InvalidSoftError, InvalidTypeError,
|
|
18
|
+
InvalidValueError, InvalidSizeError, InvalidCodeSizeError,
|
|
19
|
+
InvalidVarIndexError, InvalidVarRawSizeError, InvalidVarSizeError,
|
|
20
|
+
SerializeError, ValidationError, MissingFieldError,
|
|
21
|
+
ExtraFieldError, AlternateFieldError, MissingSignatureError,
|
|
22
|
+
MissingDestinationError, MissingWitnessSignatureError,
|
|
23
|
+
MissingDelegationError, OutOfOrderError, LikelyDuplicitousError,
|
|
24
|
+
UnverifiedWitnessReceiptError, UnverifiedReceiptError,
|
|
25
|
+
UnverifiedTransferableReceiptError, DerivationError,
|
|
26
|
+
UnverifiedReplyError, EmptyListError, MissingAnchorError,
|
|
27
|
+
MissingRegistryError, MissingIssuerError,
|
|
28
|
+
InvalidCredentialStateError, UnverifiedProofError,
|
|
29
|
+
OutOfOrderKeyStateError, OutOfOrderTxnStateError,
|
|
30
|
+
MisfitEventSourceError, MissingDelegableApprovalError,
|
|
31
|
+
ExtractionError, ShortageError, ColdStartError, ElementError,
|
|
32
|
+
SizedGroupError, TopLevelStreamError, VersionError,
|
|
33
|
+
ProtocolError, KindError, IlkError, ConversionError,
|
|
34
|
+
DeserializeError, FieldError, QueryNotFoundError,
|
|
35
|
+
DerivationCodeError, UnexpectedCodeError, UnexpectedCountCodeError,
|
|
36
|
+
UnexpectedOpCodeError, ExchangeError, InvalidEventTypeError,
|
|
37
|
+
MissingAidError, InvalidGroupError, GroupFormationError,
|
|
38
|
+
MissingChainError, RevokedChainError, MissingSchemaError,
|
|
39
|
+
FailedSchemaValidationError, UntrustedKeyStateSource, Versionage,
|
|
40
|
+
KramError, KramConfigurationError, MissingAuthAttachmentError,
|
|
41
|
+
MissingSenderKeyStateError)
|
|
42
|
+
|
|
43
|
+
from .recording import (RawRecord, StateEERecord, KeyStateRecord,
|
|
44
|
+
EventSourceRecord, HabitatRecord, TopicsRecord,
|
|
45
|
+
OobiQueryRecord, OobiRecord, EndpointRecord,
|
|
46
|
+
EndAuthRecord, LocationRecord, ObservedRecord,
|
|
47
|
+
CacheTypeRecord, MsgCacheRecord, TxnMsgCacheRecord,
|
|
48
|
+
WellKnownAuthN)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
"""
|
|
3
|
+
KERI
|
|
4
|
+
keri.acdc Package
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from .messaging import (regcept, blindate, update, acdcmap, acdcatt, acdcagg,
|
|
8
|
+
sectschema, sectattr, sectaggr, sectedge, sectrule,
|
|
9
|
+
sectionate,
|
|
10
|
+
actSchemaDefault, acgSchemaDefault, acmSchemaDefault)
|
|
11
|
+
|
|
12
|
+
from .ipexing import (Ipex, IpexHandler, loadHandlers, apply, offer, agree,
|
|
13
|
+
grant, admit, spurn)
|