added the seed crypto function

This commit is contained in:
2017-09-08 16:15:15 +00:00
parent 8b40ed630c
commit dc53a74542
19 changed files with 2035 additions and 6 deletions

View File

@ -309,6 +309,7 @@ public:
const Node* getTailNode () const { return this->datum_list->getTailNode (); }
Node* getLastNode () { return this->datum_list->getTailNode (); }
const Node* getLastNode () const { return this->datum_list->getTailNode (); }
protected:
Node* find_node (const T& datum) const
{