Created
November 18, 2016 16:47
-
-
Save gipsh/8d25eded61f4a8f7ef26c8ee3ffd6b7f to your computer and use it in GitHub Desktop.
crear certificados afip
This file contains 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
1. Primero genero la key | |
openssl genrsa -out afip-cuit.key 2048 | |
2. Despues genero el CSR | |
openssl req -new -key afip-cuit.key -sha256 -subj "/C=AR/O=MISA S.A/CN=misa.com/serialNumber=CUIT 301234567890" -out afip-cuit.csr | |
3. Con esto puedo generar el cert el site de afip. | |
4. Si necesito despues un p12 | |
openssl pkcs12 -export -inkey afip-cuit.key -in afip-cuit.crt -out afip-cuit.p12 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment