We use the fiscalizer gem to transfer various document types from a business entity to the tax authorities.
Everything about setup and usage of this gem is explained at fiscalizer gem.
Requires only one certificate - application certificate. It is most often called FISCAL_1.p12
. It contains the public and private key, and the CA (Certificate authority
) certificate.
Secrets file example:
fiscalization_app_cert_path: 'cert/production/FISKAL_1.p12'
fiscalization_ca_cert_path: ''
Requires 2 certificates - both application and server certificate. The application certificate (FISCAL_1.p12
) contains the public and private key. The server certificate (most often fina_ca.pem
) contains the required CA certificates.
Secrets file example:
fiscalization_app_cert_path: 'cert/development/FISKAL_1.p12'
fiscalization_ca_cert_path: 'cert/development/fina_ca.pem'
To view the content of the application certificate locally, you need to unpack it with this command:
openssl pkcs12 -in FISKAL_1.p12 -out FISKAL_1.pem -nodes
After running this command, you are prompted to input the fiscalization password
.
If you need to test some features that require certificates but you don't have them and your request cannot be sent, you can create a certificate following this tutorial.
Once done, create a .p12
file following these two steps:
-
Copy the private key and SSL certificate to a plain text file. The private key should be at the top with the SSL certificate below. In the example, we use "filename.txt" as the name of the file containing the private key and SSL certificate.
-
openssl pkcs12 -export -in filename.txt -out filename.p12