Sign in
cobalt
/
cobalt.git
/
72bde07ae3f88e8fd742a603ece725b122de47f5
/
.
/
src
/
cobalt
/
debug
/
remote
/
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
)
}