You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(secret): remove Validator/Verifier secret keys from repository
- Remove validator sample CA keys hardcoded inside the repository.
- Generate fresh ECDSA keys when starting up electricity-trade
or discounted-asset-trade sample apps.
- Add support for RSA CA keys in fabric-socketio validator.
I couldn't find any trivial way of generating ECDSA self-signed certificate
(without calling openssl cmdline, which seems poor from functional test perspective),
so I've added support for RSA keys to simplify the tests.
- Allow selection of jwt algorithm in fabric-socketio validator.
It must correspond to the key used.
- Update the READMEs, add short description of SSL config option of fabric-socketio validator.
Closes: 2016
Closes: 2017
Depends on: 1977
Depends on: 2030
Signed-off-by: Michal Bajer <[email protected]>
Copy file name to clipboardExpand all lines: packages-python/cactus_validator_socketio_indy/README.md
+11-9
Original file line number
Diff line number
Diff line change
@@ -15,22 +15,25 @@
15
15
1. Start indy testnet pool (follow instructions from `../../tools/docker/indy-testnet/` README). It should create docker network `indy-testnet_indy_net`, pool should be available at `172.16.0.2`.
16
16
1. Generate proof and store it in local `/etc/cactus`:
17
17
```
18
+
rm -r /etc/cactus/validator_socketio_indy/*
18
19
cd ../../examples/register-indy-data/
19
-
20
20
./script-build-docker.sh
21
-
22
21
docker run --rm -ti -v/etc/cactus/:/etc/cactus/ --net="host" register-indy-data --proof_only
0 commit comments