示例#1
0
static int ossltest_destroy(ENGINE *e)
{
    destroy_digests();
    destroy_ciphers();
    ERR_unload_OSSLTEST_strings();
    return 1;
}
示例#2
0
static int dasync_destroy(ENGINE *e)
{
    destroy_digests();
    destroy_ciphers();
    ERR_unload_DASYNC_strings();
    return 1;
}
示例#3
0
文件: e_dasync.c 项目: 1234-/openssl
static int dasync_destroy(ENGINE *e)
{
    destroy_digests();
    destroy_ciphers();
    RSA_meth_free(dasync_rsa_method);
    ERR_unload_DASYNC_strings();
    return 1;
}