Re #8472 - Changed order of create_sscrt method parameters
Re #8472 - Changed some parameter names in create_csr method and renamed make_csr_test.py to create_csr_test.py
Re #8472 - Changed access modifier of run_for_output method to private (was protected previously)
Re #8472 - Changed access modifier of sign_csr method to private (was protected previously)
Re #8472 - Changed access modifier of create_csr method to private (was protected previously)
Re #8472 - Removed useless private key generation in verify_ca_test.py
Re #8472 - Changed access modifiers of some methods and fixed verify_ca_test.py
Re #8472 - Renamed `make_csr` method to `create_csr`
Re #8472 - Added few unit tests that perform further testing of _run_for_output method
Re #8472 - Added verify_ca method that verifies whether a certificate has expired
Added 3 unit tests that verify the added method.Added "days" parameter to some methods in order to be able to specify the number of days after which the generated certificate will expire.
Re #8472 - Small changes in the documentation
Re #8472 - Added create_crt method that creates a certificate
Added 3 unit tests testing the added method.
Re #8472 - Added sign_csr method that signs a CSR
Re #8472 - Added make_csr method that makes a CSR
Added 2 unit tests testing the added method.Moved CryptographyService tests into a separate files
Re #8472 - Added create_sscrt method that creates a self signed certificate
Added 5 unit tests verifying the validity of the certificate generation.