@@ -714,9 +714,36 @@ class SecurityDb {
714
714
*/
715
715
virtual void reset_entry (entry_handle_t db_handle) = 0;
716
716
717
+ /* *
718
+ * This will read in the requested information into a buffer that will remain valid
719
+ * until another read_in call is made.
720
+ * @param db_handle handle of the entry to be read
721
+ * @return pointer to buffer holding the query result, NULL when not found
722
+ */
717
723
virtual SecurityEntryIdentity_t* read_in_entry_peer_identity (entry_handle_t db_handle) = 0;
724
+
725
+ /* *
726
+ * This will read in the requested information into a buffer that will remain valid
727
+ * until another read_in call is made.
728
+ * @param db_handle handle of the entry to be read
729
+ * @return pointer to buffer holding the query result, NULL when not found
730
+ */
718
731
virtual SecurityEntryKeys_t* read_in_entry_peer_keys (entry_handle_t db_handle) = 0;
732
+
733
+ /* *
734
+ * This will read in the requested information into a buffer that will remain valid
735
+ * until another read_in call is made.
736
+ * @param db_handle handle of the entry to be read
737
+ * @return pointer to buffer holding the query result, NULL when not found
738
+ */
719
739
virtual SecurityEntryKeys_t* read_in_entry_local_keys (entry_handle_t db_handle) = 0;
740
+
741
+ /* *
742
+ * This will read in the requested information into a buffer that will remain valid
743
+ * until another read_in call is made.
744
+ * @param db_handle handle of the entry to be read
745
+ * @return pointer to buffer holding the query result, NULL when not found
746
+ */
720
747
virtual SecurityEntrySigning_t* read_in_entry_peer_signing (entry_handle_t db_handle) = 0;
721
748
722
749
protected:
0 commit comments