UNPKG
cache-typescript-sdk
Version:
latest (0.0.1)
0.0.1
Blockstart NIS1 SDK
github.com/blockstart/blockstart-nis1-sdk
blockstart/blockstart-nis1-sdk
cache-typescript-sdk
/
dist
/
src
/
models
/
wallet
/
EncryptedPrivateKey.d.ts
14 lines
(13 loc)
•
265 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * EncryptedPrivateKey model */
export
declare
class
EncryptedPrivateKey
{
/** * Encrypted private key data */
readonly
encryptedKey:
string
;
/** * Initialization vector used in the decrypt process */
readonly
iv:
string
; }