| 27 | } |
| 28 | |
| 29 | export interface ResolvedIdentity { |
| 30 | encryptionKey: Uint8Array; |
| 31 | identityKey: Uint8Array; |
| 32 | walletAddress: string; |
| 33 | } |
| 34 | |
| 35 | export function resolveIdentity(passphrase: string): ResolvedIdentity { |
| 36 | const encryptionKey = loadKey(passphrase); |
nothing calls this directly
no outgoing calls
no test coverage detected