Sign in
cobalt
/
cobalt.git
/
527110903c994f57b3fc64852b74e941d515b683
/
.
/
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
)
}