Leon4gr45's picture
Upload folder using huggingface_hub (part 10)
8d955a0 verified
Raw
History Blame Contribute Delete
175 Bytes
exports.encrypt = function (self, block) {
return self._cipher.encryptBlock(block)
}
exports.decrypt = function (self, block) {
return self._cipher.decryptBlock(block)
}