You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
# This script acts as a record of how the debug key was generated. There should
|
|
# be no need to run it again.
|
|
|
|
openssl ecparam -name prime256v1 -genkey -noout -out debug_key.pem
|
|
openssl ec -in debug_key.pem -pubout -out debug_public.pem
|