added get_data() method
This commit is contained in:
@@ -96,9 +96,17 @@ struct pkcs7_t {
|
||||
*/
|
||||
bool (*parse_envelopedData) (pkcs7_t *this, chunk_t serialNumber, rsa_private_key_t *key);
|
||||
|
||||
/**
|
||||
* @brief Returns the parsed data object
|
||||
*
|
||||
* @param this calling object
|
||||
* @return chunk containing the data object
|
||||
*/
|
||||
chunk_t (*get_data) (pkcs7_t *this);
|
||||
|
||||
/**
|
||||
* @brief Destroys the contentInfo object.
|
||||
*
|
||||
*
|
||||
* @param this PKCS#7 contentInfo object to destroy
|
||||
*/
|
||||
void (*destroy) (pkcs7_t *this);
|
||||
|
||||
Reference in New Issue
Block a user