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

Public Member Functions

 private_key_impl ()
 
 ~private_key_impl ()
 
 private_key_impl (const private_key_impl &cpy)
 

Public Attributes

EC_KEY * _key
 

Detailed Description

Definition at line 31 of file elliptic_r1.cpp.

Constructor & Destructor Documentation

◆ private_key_impl() [1/2]

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

Definition at line 34 of file elliptic_r1.cpp.

◆ ~private_key_impl()

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

Definition at line 36 of file elliptic_r1.cpp.

37 {
38 if( _key != nullptr )
39 {
40 EC_KEY_free(_key);
41 }
42 }

◆ private_key_impl() [2/2]

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

Definition at line 43 of file elliptic_r1.cpp.

44 {
45 _key = cpy._key ? EC_KEY_dup( cpy._key ) : nullptr;
46 }

Member Data Documentation

◆ _key

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

Definition at line 47 of file elliptic_r1.cpp.


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