1# Crypto_DataBlob
2
3
4## Overview
5
6Defines the data used for encryption and decryption.
7
8**Since**: 12
9
10**Related module**: [CryptoCommonApi](_crypto_common_api.md)
11
12
13## Summary
14
15
16### Member Variables
17
18| Name | Description |
19| -------- | -------- |
20| uint8_t \* [data](#data) | Pointer to the data. |
21| size_t [len](#len) | Length of the data. |
22
23
24## Member Variable Description
25
26
27### data
28
29```
30uint8_t* Crypto_DataBlob::data
31```
32**Description**
33Pointer to the data.
34
35
36### len
37
38```
39size_t Crypto_DataBlob::len
40```
41**Description**
42Length of the data.
43