app/integration/ED25519KeyPairFactory.hpp¶
Namespaces¶
| Name |
|---|
| sgns |
Classes¶
| Name | |
|---|---|
| class | sgns::ED25519KeyPairFactory |
Detailed Description¶
Date: 2024-03-04 Henrique A. Klein ([email protected])
Source code¶
#ifndef _ED25519_KEYPAIR_FACTORY_HPP_
#define _ED25519_KEYPAIR_FACTORY_HPP_
#include "crypto/ed25519_types.hpp"
namespace sgns
{
class ED25519KeyPairFactory
{
public:
std::shared_ptr<crypto::ED25519Keypair> create()
{
return std::make_shared<crypto::ED25519Keypair>();
}
};
}
#endif
Updated on 2026-03-04 at 13:10:44 -0800