Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
fc::crypto::r1::detail::public_key_impl Class Reference

Public Member Functions

 public_key_impl ()
 
 ~public_key_impl ()
 
 public_key_impl (const public_key_impl &cpy)
 

Public Attributes

EC_KEY * _key
 

Detailed Description

Definition at line 13 of file elliptic_r1.cpp.

Constructor & Destructor Documentation

◆ public_key_impl() [1/2]

fc::crypto::r1::detail::public_key_impl::public_key_impl ( )
inline

Definition at line 16 of file elliptic_r1.cpp.

◆ ~public_key_impl()

fc::crypto::r1::detail::public_key_impl::~public_key_impl ( )
inline

Definition at line 18 of file elliptic_r1.cpp.

19 {
20 if( _key != nullptr )
21 {
22 EC_KEY_free(_key);
23 }
24 }

◆ public_key_impl() [2/2]

fc::crypto::r1::detail::public_key_impl::public_key_impl ( const public_key_impl & cpy)
inline

Definition at line 25 of file elliptic_r1.cpp.

26 {
27 _key = cpy._key ? EC_KEY_dup( cpy._key ) : nullptr;
28 }

Member Data Documentation

◆ _key

EC_KEY* fc::crypto::r1::detail::public_key_impl::_key

Definition at line 29 of file elliptic_r1.cpp.


The documentation for this class was generated from the following file: