mirror of
https://github.com/monero-project/monero.git
synced 2025-08-23 08:55:06 -04:00
crypto: revert odd namespace changes made in #3303
This commit is contained in:
parent
8705beaf51
commit
b2d23b189e
3 changed files with 7 additions and 16 deletions
|
@ -46,9 +46,6 @@
|
|||
#include "hex.h"
|
||||
#include "span.h"
|
||||
#include "hash.h"
|
||||
extern "C" {
|
||||
#include "crypto-ops.h"
|
||||
}
|
||||
|
||||
namespace crypto {
|
||||
|
||||
|
@ -116,9 +113,6 @@ namespace crypto {
|
|||
void operator=(const crypto_ops &);
|
||||
~crypto_ops();
|
||||
|
||||
static void hash_to_ec(const public_key &key, ge_p3 &res) ;
|
||||
friend void hash_to_ec(const public_key &key, ge_p3 &res) ;
|
||||
|
||||
static secret_key generate_keys(public_key &pub, secret_key &sec, const secret_key& recovery_key = secret_key(), bool recover = false);
|
||||
friend secret_key generate_keys(public_key &pub, secret_key &sec, const secret_key& recovery_key, bool recover);
|
||||
static bool check_key(const public_key &);
|
||||
|
@ -172,9 +166,6 @@ namespace crypto {
|
|||
return res;
|
||||
}
|
||||
|
||||
inline void hash_to_ec(const public_key &key, ge_p3 &res) {
|
||||
crypto_ops::hash_to_ec(key,res);
|
||||
}
|
||||
/* Generate a new key pair
|
||||
*/
|
||||
inline secret_key generate_keys(public_key &pub, secret_key &sec, const secret_key& recovery_key = secret_key(), bool recover = false) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue