I think some configuration parameters should be declared as constant:
sigalg in scep_configuration for example:
currently, sigalg = EVP_get_digestbyname(md) raises a warning since its return type is declared as static. The same holds for encalg = EVP_get_cipherbyname(alg)
what do you think?
I think some configuration parameters should be declared as constant:
sigalg in scep_configuration for example:
currently, sigalg = EVP_get_digestbyname(md) raises a warning since its return type is declared as static. The same holds for encalg = EVP_get_cipherbyname(alg)
what do you think?