Skip to content

Commit

Permalink
use RSA for executable signing keys
Browse files Browse the repository at this point in the history
  • Loading branch information
s-westphal committed Apr 18, 2024
1 parent 33a136c commit 163ede1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ openssl ecparam -list_curves

# Generate key pair .pem files, which is linked in the GRR client and
# server configs (client.yaml, server.local.yaml).
openssl ecparam -name prime256v1 -genkey -noout -out config/private-key.pem
openssl ec -in config/private-key.pem -pubout -out config/public-key.pem
openssl genrsa -out config/private-key.pem
openssl rsa -in config/private-key.pem -pubout -out config/public-key.pem

# Create a CA/trusted private key and cert for Fleetspeak.
openssl ecparam -name prime256v1 -genkey -noout \
Expand Down

0 comments on commit 163ede1

Please sign in to comment.