mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
769 B
JavaScript
25 lines
769 B
JavaScript
function run_test() {
|
|
// initialize nss
|
|
let ch = Cc["@mozilla.org/security/hash;1"].createInstance(Ci.nsICryptoHash);
|
|
|
|
let pbe = Cc["@labs.mozilla.com/Weave/Crypto;1"].getService(Ci.IWeaveCrypto);
|
|
|
|
pbe.algorithm = pbe.DES_EDE3_CBC;
|
|
let cipherTxt = pbe.encrypt("passphrase", "my very secret message!");
|
|
|
|
do_check_true(cipherTxt != "my very secret message!");
|
|
|
|
let clearTxt = pbe.decrypt("passphrase", cipherTxt);
|
|
do_check_true(clearTxt == "my very secret message!");
|
|
|
|
// The following check with wrong password must cause decryption to fail
|
|
// because of used padding-schema cipher, RFC 3852 Section 6.3
|
|
let failure = false;
|
|
try {
|
|
pbe.decrypt("wrongpassphrase", cipherTxt);
|
|
} catch (e) {
|
|
failure = true;
|
|
}
|
|
do_check_true(failure);
|
|
}
|