Sign in
cobalt
/
cobalt
/
948d11203a7709abef9a72ec8977eab3cddf0fda
/
.
/
third_party
/
devtools
/
node_modules
/
browserify-aes
/
modes
/
ecb.js
blob: 49dfb1e22d349e67fec8b9b13ae2ae761218b080 [
file
]
exports
.
encrypt
=
function
(
self
,
block
)
{
return
self
.
_cipher
.
encryptBlock
(
block
)
}
exports
.
decrypt
=
function
(
self
,
block
)
{
return
self
.
_cipher
.
decryptBlock
(
block
)
}