• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# OH_Huks_KeyMaterialEcc
2
3
4## Overview
5
6Defines the structure of an ECC key.
7
8**Since:**
99
10
11**Related Modules:**
12
13[HuksTypeApi](_huks_type_api.md)
14
15
16## Summary
17
18
19### Member Variables
20
21| Name | Description |
22| -------- | -------- |
23| [keyAlg](#keyalg) |Algorithm of the key.  |
24| [keySize](#keysize) | Length of the key.  |
25| [xSize](#xsize) | Length of the x value.  |
26| [ySize](#ysize) | Length of the y value.  |
27| [zSize](#zsize) | Length of the z value.  |
28
29
30## Member Variable Description
31
32
33### keyAlg
34
35
36```
37enum OH_Huks_KeyAlg OH_Huks_KeyMaterialEcc::keyAlg
38```
39**Description**<br>
40Algorithm of the key.
41
42
43### keySize
44
45
46```
47uint32_t OH_Huks_KeyMaterialEcc::keySize
48```
49**Description**<br>
50Length of the key.
51
52
53### xSize
54
55
56```
57uint32_t OH_Huks_KeyMaterialEcc::xSize
58```
59**Description**<br>
60Length of the x value.
61
62
63### ySize
64
65
66```
67uint32_t OH_Huks_KeyMaterialEcc::ySize
68```
69**Description**<br>
70Length of the y value.
71
72
73### zSize
74
75
76```
77uint32_t OH_Huks_KeyMaterialEcc::zSize
78```
79**Description**<br>
80Length of the z value.
81