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
/
pad
/
Padding.d.ts
6 lines
(5 loc)
•
168 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
WordArray
}
from
'../lib/WordArray'
;
export
interface
Padding
{
pad
:
(
data
:
WordArray
,
blockSize
:
number
) =>
void
;
unpad
:
(
data
:
WordArray
) =>
void
; }