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