KeyProperties
@hyperledger/identus-sdk v7.0.0
@hyperledger/identus-sdk / overview / Domain / KeyProperties
Enumeration: KeyProperties
Defined in: src/domain/models/KeyProperties.ts:1
Enumeration Members
| Enumeration Member | Value | Description | Defined in | 
|---|---|---|---|
| algorithm | "algorithm" | The 'algorithm' corresponds to the cryptographic algorithm associated with the key. | src/domain/models/KeyProperties.ts:5 | 
| chainCode | "chainCode" | The 'chainCode' used for key derivation. hex encoded value. const chainCode = Buffer.from(props[KeyProperties.chainCode], "hex"); | src/domain/models/KeyProperties.ts:30 | 
| curve | "curve" | The 'curve' represents the elliptic curve used for an elliptic-curve key. | src/domain/models/KeyProperties.ts:10 | 
| curvePointX | "curvePoint.x" | The 'curvePointX' represents the x-coordinate of a curve point for an elliptic-curve key. | src/domain/models/KeyProperties.ts:46 | 
| curvePointY | "curvePoint.y" | The 'curvePointY' represents the y-coordinate of a curve point for an elliptic-curve key. | src/domain/models/KeyProperties.ts:51 | 
| derivationPath | "derivationPath" | The 'derivationPath' refers to the path used to derive a key in a hierarchical deterministic (HD) key generation scheme. | src/domain/models/KeyProperties.ts:40 | 
| derivationSchema | "derivationSchema" | The 'derivationSchema' corresponds to derivationSchema used. | src/domain/models/KeyProperties.ts:20 | 
| index | "index" | - | src/domain/models/KeyProperties.ts:41 | 
| rawKey | "raw" | The 'rawKey' refers to the raw binary form of the key. | src/domain/models/KeyProperties.ts:35 | 
| seed | "seed" | The 'seed' corresponds to the seed value from which a key is derived. | src/domain/models/KeyProperties.ts:15 |