UNPKG
crypto-ts
Version:
latest (1.0.2)
1.0.2
1.0.1
Typescript library of crypto standards.
github.com/hmoog/crypto-ts
hmoog/crypto-ts
crypto-ts
/
src
/
enc
/
Encoding.d.ts
6 lines
(5 loc)
•
164 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
WordArray
}
from
'../lib/WordArray'
;
export
interface
Encoding
{
stringify
:
(
wordArray
:
WordArray
) =>
string
;
parse
:
(
str
:
string
) =>
WordArray
; }