2016-05-17 18:52:22 +00:00
|
|
|
/*
|
2018-05-29 12:07:08 +00:00
|
|
|
* Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved.
|
2001-08-18 10:22:54 +00:00
|
|
|
*
|
2018-12-06 12:39:00 +00:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 18:52:22 +00:00
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2001-08-18 10:22:54 +00:00
|
|
|
*/
|
|
|
|
|
2001-09-07 04:14:48 +00:00
|
|
|
#include "eng_int.h"
|
2001-08-18 10:22:54 +00:00
|
|
|
|
2001-09-25 20:00:51 +00:00
|
|
|
static ENGINE_TABLE *rsa_table = NULL;
|
|
|
|
static const int dummy_nid = 1;
|
2001-08-18 10:22:54 +00:00
|
|
|
|
2001-09-25 20:00:51 +00:00
|
|
|
void ENGINE_unregister_RSA(ENGINE *e)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
engine_table_unregister(&rsa_table, e);
|
|
|
|
}
|
2001-08-18 10:22:54 +00:00
|
|
|
|
2001-10-08 17:06:52 +00:00
|
|
|
static void engine_unregister_all_RSA(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
engine_table_cleanup(&rsa_table);
|
|
|
|
}
|
2001-08-18 10:22:54 +00:00
|
|
|
|
2001-09-25 20:00:51 +00:00
|
|
|
int ENGINE_register_RSA(ENGINE *e)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (e->rsa_meth)
|
|
|
|
return engine_table_register(&rsa_table,
|
|
|
|
engine_unregister_all_RSA, e, &dummy_nid,
|
|
|
|
1, 0);
|
|
|
|
return 1;
|
|
|
|
}
|
2001-08-18 10:22:54 +00:00
|
|
|
|
2018-05-09 15:09:50 +00:00
|
|
|
void ENGINE_register_all_RSA(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
ENGINE *e;
|
2001-08-18 10:22:54 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
for (e = ENGINE_get_first(); e; e = ENGINE_get_next(e))
|
|
|
|
ENGINE_register_RSA(e);
|
|
|
|
}
|
2001-08-18 10:22:54 +00:00
|
|
|
|
2001-09-25 20:00:51 +00:00
|
|
|
int ENGINE_set_default_RSA(ENGINE *e)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (e->rsa_meth)
|
|
|
|
return engine_table_register(&rsa_table,
|
|
|
|
engine_unregister_all_RSA, e, &dummy_nid,
|
|
|
|
1, 1);
|
|
|
|
return 1;
|
|
|
|
}
|
2001-08-18 13:53:01 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
|
|
|
* Exposed API function to get a functional reference from the implementation
|
2001-09-25 20:00:51 +00:00
|
|
|
* table (ie. try to get a functional reference from the tabled structural
|
2015-01-22 03:40:55 +00:00
|
|
|
* references).
|
|
|
|
*/
|
2001-09-25 20:00:51 +00:00
|
|
|
ENGINE *ENGINE_get_default_RSA(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return engine_table_select(&rsa_table, dummy_nid);
|
|
|
|
}
|
2001-08-18 13:53:01 +00:00
|
|
|
|
2001-09-25 20:00:51 +00:00
|
|
|
/* Obtains an RSA implementation from an ENGINE functional reference */
|
|
|
|
const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
return e->rsa_meth;
|
|
|
|
}
|
2001-08-18 13:53:01 +00:00
|
|
|
|
2001-09-25 20:00:51 +00:00
|
|
|
/* Sets an RSA implementation in an ENGINE structure */
|
|
|
|
int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
e->rsa_meth = rsa_meth;
|
|
|
|
return 1;
|
|
|
|
}
|