|
identt
|
Public Types | |
| using | SignatureListT = std::vector<::identt::query::SignatureT > |
Public Member Functions | |
| SignedJson () | |
| Default Constructor. More... | |
| virtual | ~SignedJson () |
| Default Destructor. More... | |
| void | AddSign (::identt::utils::SharedTable::pointer stptr, const google::protobuf::Message *result, const ::identt::query::PubKeyT *pubkey, std::string &output, SignatureListT &signatures) |
| AddSign: Add Signature pb, also adds older signatures. More... | |
| void | AddSign (::identt::utils::SharedTable::pointer stptr, const google::protobuf::Message *result, const google::protobuf::Message *uresult, const ::identt::query::PubKeyT *pubkey, std::string &output, SignatureListT &signatures) |
| AddSign: Add Signature pb + unsigned, also adds older signatures. More... | |
| void | AddSign (::identt::utils::SharedTable::pointer stptr, const std::string input, const ::identt::query::PubKeyT *pubkey, std::string &output, SignatureListT &signatures) |
| AddSign: Add Signature to canonnical json string, also adds older signatures , no unsigned. More... | |
| void | AddSign (::identt::utils::SharedTable::pointer stptr, const std::string input, const std::string uinput, const ::identt::query::PubKeyT *pubkey, std::string &output, SignatureListT &signatures) |
| AddSign: Add Signature to canonnical json string, also adds older signatures , adds unsigned. More... | |
| void | VerifySign (::identt::utils::SharedTable::pointer stptr, const std::string input, const ::identt::query::PubKeyT *pubkey, std::string &output, std::string &uoutput, SignatureListT &signatures) |
| VerifySign: Verify signature and get string. More... | |
| void | VerifySign (::identt::utils::SharedTable::pointer stptr, const std::string input, const ::identt::query::PubKeyT *pubkey, google::protobuf::Message *result, SignatureListT &signatures) |
| VerifySign: Verify Signature pb no unsigned. More... | |
| void | VerifySign (::identt::utils::SharedTable::pointer stptr, const std::string input, const ::identt::query::PubKeyT *pubkey, google::protobuf::Message *result, google::protobuf::Message *uresult, SignatureListT &signatures) |
| VerifySign: Verify Signature pb, with unsigned. More... | |
| identt::query::SignedJson::SignedJson | ( | ) |
Default Constructor.
|
virtual |
Default Destructor.
| void identt::query::SignedJson::AddSign | ( | ::identt::utils::SharedTable::pointer | stptr, |
| const google::protobuf::Message * | result, | ||
| const ::identt::query::PubKeyT * | pubkey, | ||
| std::string & | output, | ||
| SignatureListT & | signatures | ||
| ) |
AddSign: Add Signature pb, also adds older signatures.
| stptr | ::identt::utils::SharedTable::pointer stptr |
| result | const google::protobuf::Message* result |
| pubkey | const ::identt::query::PubKeyT* pubkey |
| output | std::string& output to populate |
| signatures | SignatureListT& signatures to append |
| void identt::query::SignedJson::AddSign | ( | ::identt::utils::SharedTable::pointer | stptr, |
| const google::protobuf::Message * | result, | ||
| const google::protobuf::Message * | uresult, | ||
| const ::identt::query::PubKeyT * | pubkey, | ||
| std::string & | output, | ||
| SignatureListT & | signatures | ||
| ) |
AddSign: Add Signature pb + unsigned, also adds older signatures.
| stptr | ::identt::utils::SharedTable::pointer stptr |
| result | const google::protobuf::Message* result |
| uresult | const google::protobuf::Message* result unsigned part |
| pubkey | const ::identt::query::PubKeyT* pubkey |
| output | std::string& output to populate |
| signatures | SignatureListT& signatures to append |
| void identt::query::SignedJson::AddSign | ( | ::identt::utils::SharedTable::pointer | stptr, |
| const std::string | input, | ||
| const ::identt::query::PubKeyT * | pubkey, | ||
| std::string & | output, | ||
| SignatureListT & | signatures | ||
| ) |
AddSign: Add Signature to canonnical json string, also adds older signatures , no unsigned.
| stptr | ::identt::utils::SharedTable::pointer stptr |
| input | const std::string input string |
| pubkey | const ::identt::query::PubKeyT* pubkey |
| output | std::string& output to populate |
| signatures | SignatureListT& signatures to append |
| void identt::query::SignedJson::AddSign | ( | ::identt::utils::SharedTable::pointer | stptr, |
| const std::string | input, | ||
| const std::string | uinput, | ||
| const ::identt::query::PubKeyT * | pubkey, | ||
| std::string & | output, | ||
| SignatureListT & | signatures | ||
| ) |
AddSign: Add Signature to canonnical json string, also adds older signatures , adds unsigned.
| stptr | ::identt::utils::SharedTable::pointer stptr |
| input | const std::string input string |
| uinput | const std::string input string unsigned |
| pubkey | const ::identt::query::PubKeyT* pubkey |
| output | std::string& output to populate |
| signatures | SignatureListT& signatures to append |
| void identt::query::SignedJson::VerifySign | ( | ::identt::utils::SharedTable::pointer | stptr, |
| const std::string | input, | ||
| const ::identt::query::PubKeyT * | pubkey, | ||
| std::string & | output, | ||
| std::string & | uoutput, | ||
| SignatureListT & | signatures | ||
| ) |
VerifySign: Verify signature and get string.
| stptr | ::identt::utils::SharedTable::pointer stptr |
| input | const std::string input string |
| pubkey | const ::identt::query::PubKeyT* pubkey |
| output | std::string& output to populate |
| uoutput | std::string& output to populate unsigned |
| signatures | SignatureListT& signatures to append |
| void identt::query::SignedJson::VerifySign | ( | ::identt::utils::SharedTable::pointer | stptr, |
| const std::string | input, | ||
| const ::identt::query::PubKeyT * | pubkey, | ||
| google::protobuf::Message * | result, | ||
| SignatureListT & | signatures | ||
| ) |
VerifySign: Verify Signature pb no unsigned.
| stptr | ::identt::utils::SharedTable::pointer stptr |
| input | std::string input to get from |
| pubkey | const ::identt::query::PubKeyT* pubkey |
| result | google::protobuf::Message* result |
| signatures | SignatureListT& signatures to append |
| void identt::query::SignedJson::VerifySign | ( | ::identt::utils::SharedTable::pointer | stptr, |
| const std::string | input, | ||
| const ::identt::query::PubKeyT * | pubkey, | ||
| google::protobuf::Message * | result, | ||
| google::protobuf::Message * | uresult, | ||
| SignatureListT & | signatures | ||
| ) |
VerifySign: Verify Signature pb, with unsigned.
| stptr | ::identt::utils::SharedTable::pointer stptr |
| input | const std::string input to get from |
| pubkey | const ::identt::query::PubKeyT* pubkey |
| result | google::protobuf::Message* result |
| uresult | google::protobuf::Message* unsigned result |
| signatures | SignatureListT& signatures to append |
1.8.12