Compare commits

...

2 commits

Author SHA1 Message Date
f3c049e210
vault backup: 2025-01-19 19:04:28 2025-01-19 19:04:28 -05:00
57aed25d69
vault backup: 2025-01-19 18:59:32 2025-01-19 18:59:32 -05:00

View file

@ -0,0 +1,10 @@
```bash
# on host
docker run --rm -it alpine:latest sh
# in container
apk add xxd openssl
# everything after this is one command
echo PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX: $(openssl ecparam --name secp256k1 --genkey --noout --outform DER | tail -c +8 | head -c 32 | xxd --plain --cols 32)
```