UNPKG
@investorid/identity-sdk
Version:
latest (0.4.11)
0.4.11
0.4.10
0.4.9
0.4.8
0.4.7
0.4.6
0.4.5
0.4.4
0.4.3
0.4.2
Interact with BlockChain Identities.
github.com/investorid/identity-sdk
investorid/identity-sdk
@investorid/identity-sdk
/
dist
/
lib
/
identities
/
Key.interface.d.ts
15 lines
(14 loc)
•
230 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
declare
enum
KeyPurpose
{
MANAGEMENT
=
1
,
ACTION
=
2
,
CLAIM
=
3
}
export
declare
enum
KeyType
{
ECDSA
=
1
,
RSA
=
2
}
export
interface
Key
{
purpose
:
KeyPurpose
;
type
:
KeyType
;
key
:
string
; }