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
/
mode
/
CBC.d.ts
9 lines
(8 loc)
•
208 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
BlockCipherMode
}
from
'./BlockCipherMode'
;
/** * Cipher Block Chaining mode. */
export
declare
abstract
class
CBC
extends
BlockCipherMode
{
static
Encryptor
:
any
;
static
Decryptor
:
any
; }