Disable encryption
This commit is contained in:
@@ -614,6 +614,9 @@ function TS_decrypt(input, secret, callback, table, id) {
|
||||
}
|
||||
}
|
||||
function TS_encrypt(input, secret, callback, mode = "RSA") {
|
||||
// Skip encryption
|
||||
callback(input);
|
||||
return;
|
||||
// Encrypt given value for at-rest storage using CryptoJS AES.
|
||||
// Always return string of form RSA{<ciphertext>} via callback.
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user