-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkinds.go
More file actions
19 lines (14 loc) · 591 Bytes
/
kinds.go
File metadata and controls
19 lines (14 loc) · 591 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package main
const (
KindKeyCredentialBase = "KeyCredentialBase"
EdgeKindHasKeyCredential = "HasKeyCredential"
EdgeKindHasKeyMaterial = "HasKeyMaterial"
NodeKindKeyCredential = "KeyCredential"
NodeKindUnknownKeyMaterial = "KeyCredentialUnknownKeyMaterial"
NodeKindDSAPrivateKey = "KeyCredentialDSAPrivateKey"
NodeKindRSAPrivateKey = "KeyCredentialRSAPrivateKey"
NodeKindDSAPublicKey = "KeyCredentialDSAPublicKey"
NodeKindRSAPublicKey = "KeyCredentialRSAPublicKey"
NodeKindECCPrivateKey = "KeyCredentialECCPrivateKey"
NodeKindECCPublicKey = "KeyCredentialECCPublicKey"
)