UNPKG

@airgap/crypto

Version:

The @airgap/crypto packages provides common crypto functionalities.

6 lines (5 loc) 409 B
import { DerivationIndex } from '../types/derivation'; export declare function createDerivationIndexFromNumber(value: number, isHardened: boolean): DerivationIndex; export declare function createDerivationIndexFromString(value: string): DerivationIndex; export declare function splitDerivationPath(path: string): DerivationIndex[]; export declare function incIndex(current: DerivationIndex): DerivationIndex;