| 1 | import type { BytesLike } from '@fuel-ts/utils'; |
| 2 | |
| 3 | export interface Keystore { |
| 4 | data: string; |
| 5 | iv: string; |
| 6 | salt: string; |
| 7 | } |
| 8 | |
| 9 | export interface IScryptParams { |
| 10 | password: Uint8Array; |
nothing calls this directly
no outgoing calls
no test coverage detected