Skip to content

Instantly share code, notes, and snippets.

@Enweave
Created August 28, 2020 10:23
Show Gist options
  • Save Enweave/2bc7c3798361e4707651d62b72a0f1c3 to your computer and use it in GitHub Desktop.
Save Enweave/2bc7c3798361e4707651d62b72a0f1c3 to your computer and use it in GitHub Desktop.
Create certificate processing requests(CSR) for Apple PAY under linux
# Apple Pay Merchant Identity
openssl genrsa -out identity.key 2048
openssl req -new -key identity.key -out identity.csr
# Apple Pay Payment Processing
openssl ecparam -out processing.key -name prime256v1 -genkey
openssl req -new -key processing.key -out processing.csr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment