Mirror from bluesky-social/pds

make the openssl command a bit more readable

+2 -1
+2 -1
README.md
··· 152 152 ### Generating K256 private keys 153 153 154 154 Your PDS will need two secp256k1 private keys provided as hex strings. You can securely generate these keys using `openssl` with the following command: 155 + 155 156 ```bash 156 - openssl ecparam -name secp256k1 -genkey -noout -outform DER | tail -c +8 | head -c 32 | xxd -p -c 32 157 + openssl ecparam --name secp256k1 --genkey --noout --outform DER | tail --bytes=+8 | head --bytes=32 | xxd --plain --cols 32 157 158 ``` 158 159 159 160 This will output a 64-char hex string. Please generate two keys in preperation for the next step.