mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
661389fa2f
--HG-- rename : services/crypto/components/IWeaveCrypto.xpt => services/crypto/IWeaveCrypto.xpt
36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
function run_test() {
|
|
var cryptoSvc = Cc[cryptoContractID].
|
|
getService(Ci.IWeaveCrypto);
|
|
|
|
var salt = cryptoSvc.generateRandomBytes(16);
|
|
var iv = cryptoSvc.generateRandomIV();
|
|
var symKey = cryptoSvc.generateRandomKey();
|
|
|
|
// Tests with a 2048 bit key (the default)
|
|
do_check_eq(cryptoSvc.keypairBits, 2048)
|
|
var pubOut = {};
|
|
var privOut = {};
|
|
cryptoSvc.generateKeypair("old passphrase", salt, iv, pubOut, privOut);
|
|
var pubKey = pubOut.value;
|
|
var privKey = privOut.value;
|
|
|
|
// do some key wrapping
|
|
var wrappedKey = cryptoSvc.wrapSymmetricKey(symKey, pubKey);
|
|
var unwrappedKey = cryptoSvc.unwrapSymmetricKey(wrappedKey, privKey,
|
|
"old passphrase", salt, iv);
|
|
|
|
// Is our unwrapped key the same thing we started with?
|
|
do_check_eq(unwrappedKey, symKey);
|
|
|
|
// Rewrap key with a new passphrase
|
|
var newPrivKey = cryptoSvc.rewrapPrivateKey(privKey, "old passphrase",
|
|
salt, iv, "new passphrase");
|
|
|
|
// Unwrap symkey with new symkey
|
|
var newUnwrappedKey = cryptoSvc.unwrapSymmetricKey(wrappedKey, newPrivKey,
|
|
"new passphrase", salt, iv);
|
|
|
|
// The acid test... Is this unwrapped symkey the same as before?
|
|
do_check_eq(newUnwrappedKey, unwrappedKey);
|
|
}
|