Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
devtools
/
node_modules
/
browserify-aes
/
modes
/
ecb.js
blob: 49dfb1e22d349e67fec8b9b13ae2ae761218b080 [
file
] [
log
] [
blame
]
Kaido Kert
f585e26
2020-06-08 11:42:28 -0700
[
diff
] [
blame
]
1
exports
.
encrypt
=
function
(
self
,
block
)
{
2
return
self
.
_cipher
.
encryptBlock
(
block
)
3
}
4
5
exports
.
decrypt
=
function
(
self
,
block
)
{
6
return
self
.
_cipher
.
decryptBlock
(
block
)
7
}