Skip to content

Commit

Permalink
fix public key generation
Browse files Browse the repository at this point in the history
  • Loading branch information
s-westphal committed Apr 11, 2024
1 parent 88f39a1 commit b547297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker_config_files/init_certs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ FILE_DIR="$(dirname "$(which "$0")")"
# Generate key pair .pem files, which is linked in the GRR client and
# server configs (client.yaml, server.local.yaml).
openssl genrsa -out "$FILE_DIR/private-key.pem"
openssl ec -in "$FILE_DIR/private-key.pem" -pubout -out "$FILE_DIR/public-key.pem"
openssl rsa -in "$FILE_DIR/private-key.pem" -pubout -out "$FILE_DIR/public-key.pem"

# Create a CA/trusted private key and cert for Fleetspeak.
openssl genrsa \
Expand Down

0 comments on commit b547297

Please sign in to comment.