Created
August 28, 2020 10:23
-
-
Save Enweave/2bc7c3798361e4707651d62b72a0f1c3 to your computer and use it in GitHub Desktop.
Create certificate processing requests(CSR) for Apple PAY under linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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