UNPKG

crypto-ts

Version:

Typescript library of crypto standards.

6 lines (5 loc) 164 B
import { WordArray } from '../lib/WordArray'; export interface Encoding { stringify: (wordArray: WordArray) => string; parse: (str: string) => WordArray; }