1# OH_Huks_KeyMaterialRsa 2 3 4## Overview 5 6Defines the structure of an RSA 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| [nSize](#nsize) | Length of the n value. | 26| [eSize](#esize) | Length of the e value. | 27| [dSize](#dsize) | Length of the d value. | 28 29 30## Member Variable Description 31 32 33### dSize 34 35 36``` 37uint32_t OH_Huks_KeyMaterialRsa::dSize 38``` 39**Description**<br> 40Length of the d value. 41 42 43### eSize 44 45 46``` 47uint32_t OH_Huks_KeyMaterialRsa::eSize 48``` 49**Description**<br> 50Length of the e value. 51 52 53### keyAlg 54 55 56``` 57enum OH_Huks_KeyAlg OH_Huks_KeyMaterialRsa::keyAlg 58``` 59**Description**<br> 60Algorithm of the key. 61 62 63### keySize 64 65 66``` 67uint32_t OH_Huks_KeyMaterialRsa::keySize 68``` 69**Description**<br> 70Length of the key. 71 72 73### nSize 74 75 76``` 77uint32_t OH_Huks_KeyMaterialRsa::nSize 78``` 79**Description**<br> 80Length of the n value. 81