crypto: revert odd namespace changes made in #3303

This commit is contained in:
stoffu 2018-03-05 17:20:36 +09:00
parent 8705beaf51
commit b2d23b189e
No known key found for this signature in database
GPG key ID: 41DAB8343A9EC012
3 changed files with 7 additions and 16 deletions

View file

@ -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) {