mail/src/js/crypto/pgp.js

357 lines
12 KiB
JavaScript
Raw Normal View History

2013-10-11 15:30:03 -04:00
/**
* High level crypto api that handles all calls to OpenPGP.js
*/
define(function(require) {
'use strict';
2014-01-24 07:26:29 -05:00
var openpgp = require('openpgp'),
util = require('openpgp').util,
config = require('js/app-config').config;
2013-10-11 15:30:03 -04:00
var PGP = function() {
2014-02-17 10:05:58 -05:00
openpgp.config.prefer_hash_algorithm = openpgp.enums.hash.sha256;
openpgp.initWorker(config.workerPath + '/../lib/openpgp/openpgp.worker.js');
};
2013-10-11 15:30:03 -04:00
/**
* Generate a key pair for the user
*/
PGP.prototype.generateKeys = function(options, callback) {
var userId, passphrase;
2013-10-11 15:30:03 -04:00
if (!util.emailRegEx.test(options.emailAddress) || !options.keySize) {
callback(new Error('Crypto init failed. Not all options set!'));
2013-10-11 15:30:03 -04:00
return;
}
2014-06-13 05:48:13 -04:00
// generate keypair
userId = 'Whiteout User <' + options.emailAddress + '>';
passphrase = (options.passphrase) ? options.passphrase : undefined;
2014-06-13 05:48:13 -04:00
openpgp.generateKeyPair({
keyType: 1, // (keytype 1=RSA)
numBits: options.keySize,
userId: userId,
passphrase: passphrase
}, onGenerated);
function onGenerated(err, keys) {
if (err) {
callback(new Error('Keygeneration failed!'));
return;
}
callback(null, {
keyId: keys.key.primaryKey.getKeyId().toHex().toUpperCase(),
privateKeyArmored: keys.privateKeyArmored,
publicKeyArmored: keys.publicKeyArmored
2013-10-11 21:19:01 -04:00
});
}
2013-10-11 15:30:03 -04:00
};
2013-11-06 10:20:49 -05:00
/**
* Show a user's fingerprint
*/
2014-01-24 07:26:29 -05:00
PGP.prototype.getFingerprint = function(keyArmored) {
function fingerprint(key) {
return key.primaryKey.getFingerprint().toUpperCase();
}
2014-01-24 07:26:29 -05:00
// process armored key input
if (keyArmored) {
return fingerprint(openpgp.key.readArmored(keyArmored).keys[0]);
2013-11-06 10:20:49 -05:00
}
2014-01-24 07:26:29 -05:00
if (!this._publicKey) {
throw new Error('No public key set for fingerprint generation!');
2013-11-06 10:20:49 -05:00
}
2014-01-24 07:26:29 -05:00
// get local fingerpring
return fingerprint(this._publicKey);
2013-11-06 10:20:49 -05:00
};
/**
* Show a user's key id.
2013-11-06 10:20:49 -05:00
*/
PGP.prototype.getKeyId = function(keyArmored) {
var key, pubKeyId, privKeyId;
// process armored key input
if (keyArmored) {
key = openpgp.key.readArmored(keyArmored).keys[0];
return key.primaryKey.getKeyId().toHex().toUpperCase();
}
2014-01-24 07:26:29 -05:00
// check already imported keys
2014-01-24 07:26:29 -05:00
if (!this._privateKey || !this._publicKey) {
throw new Error('Cannot read key IDs... keys not set!');
2013-11-06 10:20:49 -05:00
}
pubKeyId = this._publicKey.primaryKey.getKeyId().toHex().toUpperCase();
privKeyId = this._privateKey.primaryKey.getKeyId().toHex().toUpperCase();
2014-01-24 07:26:29 -05:00
if (!pubKeyId || !privKeyId || pubKeyId !== privKeyId) {
throw new Error('Key IDs do not match!');
2014-01-24 07:26:29 -05:00
}
return pubKeyId;
2013-11-06 10:20:49 -05:00
};
/**
* Read all relevant params of an armored key.
*/
PGP.prototype.getKeyParams = function(keyArmored) {
var key, packet, userIds;
// process armored key input
if (keyArmored) {
key = openpgp.key.readArmored(keyArmored).keys[0];
} else if (this._publicKey) {
key = this._publicKey;
} else {
throw new Error('Cannot read key params... keys not set!');
}
packet = key.primaryKey;
// read user names and email addresses
userIds = [];
key.getUserIds().forEach(function(userId) {
userIds.push({
name: userId.split('<')[0].trim(),
emailAddress: userId.split('<')[1].split('>')[0].trim()
});
});
return {
_id: packet.getKeyId().toHex().toUpperCase(),
userId: userIds[0].emailAddress, // the primary (first) email address of the key
userIds: userIds, // a dictonary of all the key's name/address pairs
2014-03-31 08:06:56 -04:00
fingerprint: packet.getFingerprint().toUpperCase(),
algorithm: packet.algorithm,
bitSize: packet.getBitSize(),
created: packet.created,
};
};
/**
* Extract a public key from a private key
* @param {String} privateKeyArmored The private PGP key block
* @return {String} The publick PGP key block
*/
PGP.prototype.extractPublicKey = function(privateKeyArmored) {
var privkey = openpgp.key.readArmored(privateKeyArmored).keys[0];
var pubkey = privkey.toPublic();
return pubkey.armor();
};
2013-10-11 15:30:03 -04:00
/**
* Import the user's key pair
*/
PGP.prototype.importKeys = function(options, callback) {
2014-01-24 07:26:29 -05:00
var pubKeyId, privKeyId, self = this;
2013-10-11 15:54:43 -04:00
2014-01-24 07:26:29 -05:00
// check options
if (!options.privateKeyArmored || !options.publicKeyArmored) {
callback(new Error('Importing keys failed. Not all options set!'));
2013-10-11 15:30:03 -04:00
return;
}
2014-01-24 07:26:29 -05:00
function resetKeys() {
self._publicKey = undefined;
self._privateKey = undefined;
}
// read armored keys
try {
this._publicKey = openpgp.key.readArmored(options.publicKeyArmored).keys[0];
this._privateKey = openpgp.key.readArmored(options.privateKeyArmored).keys[0];
} catch (e) {
resetKeys();
callback(new Error('Importing keys failed. Parsing error!'));
2014-01-24 07:26:29 -05:00
return;
}
// decrypt private key with passphrase
if (!this._privateKey.decrypt(options.passphrase)) {
resetKeys();
callback(new Error('Incorrect passphrase!'));
2013-10-11 15:30:03 -04:00
return;
}
2013-10-11 15:54:43 -04:00
// check if keys have the same id
pubKeyId = this._publicKey.primaryKey.getKeyId().toHex();
privKeyId = this._privateKey.primaryKey.getKeyId().toHex();
2014-01-24 07:26:29 -05:00
if (!pubKeyId || !privKeyId || pubKeyId !== privKeyId) {
resetKeys();
callback(new Error('Key IDs dont match!'));
2013-10-11 15:54:43 -04:00
return;
}
2013-10-11 15:30:03 -04:00
callback();
};
/**
* Export the user's key pair
*/
PGP.prototype.exportKeys = function(callback) {
2014-01-24 07:26:29 -05:00
if (!this._publicKey || !this._privateKey) {
callback(new Error('Could not export keys!'));
2013-10-11 15:30:03 -04:00
return;
}
2013-10-11 16:10:50 -04:00
callback(null, {
keyId: this._publicKey.primaryKey.getKeyId().toHex().toUpperCase(),
2014-01-24 07:26:29 -05:00
privateKeyArmored: this._privateKey.armor(),
publicKeyArmored: this._publicKey.armor()
2013-10-11 15:30:03 -04:00
});
};
/**
* Change the passphrase of an ascii armored private key.
*/
PGP.prototype.changePassphrase = function(options, callback) {
var privKey, packets, newPassphrase, newKeyArmored;
// set undefined instead of empty string as passphrase
newPassphrase = (options.newPassphrase) ? options.newPassphrase : undefined;
if (!options.privateKeyArmored) {
callback(new Error('Private key must be specified to change passphrase!'));
return;
}
if (options.oldPassphrase === newPassphrase ||
(!options.oldPassphrase && !newPassphrase)) {
callback(new Error('New and old passphrase are the same!'));
return;
}
// read armored key
try {
privKey = openpgp.key.readArmored(options.privateKeyArmored).keys[0];
} catch (e) {
callback(new Error('Importing key failed. Parsing error!'));
return;
}
// decrypt private key with passphrase
if (!privKey.decrypt(options.oldPassphrase)) {
callback(new Error('Old passphrase incorrect!'));
return;
}
// encrypt key with new passphrase
try {
packets = privKey.getAllKeyPackets();
for (var i = 0; i < packets.length; i++) {
packets[i].encrypt(newPassphrase);
}
newKeyArmored = privKey.armor();
} catch (e) {
callback(new Error('Setting new passphrase failed!'));
return;
}
// check if new passphrase really works
if (!privKey.decrypt(newPassphrase)) {
callback(new Error('Decrypting key with new passphrase failed!'));
return;
}
callback(null, newKeyArmored);
};
2013-10-11 15:30:03 -04:00
/**
* Encrypt and sign a pgp message for a list of receivers
*/
2014-01-24 07:26:29 -05:00
PGP.prototype.encrypt = function(plaintext, publicKeysArmored, callback) {
var publicKeys;
2013-10-11 15:30:03 -04:00
2014-01-24 07:26:29 -05:00
// check keys
if (!this._privateKey) {
callback(new Error('Error encrypting. Keys must be set!'));
2014-01-24 07:26:29 -05:00
return;
2013-10-11 15:30:03 -04:00
}
// parse armored public keys
try {
if (publicKeysArmored && publicKeysArmored.length) {
publicKeys = [];
publicKeysArmored.forEach(function(pubkeyArmored) {
publicKeys = publicKeys.concat(openpgp.key.readArmored(pubkeyArmored).keys);
});
}
} catch (err) {
callback(new Error('Error encrypting plaintext!'));
return;
}
2013-10-11 15:30:03 -04:00
if (publicKeys) {
// encrypt and sign the plaintext
openpgp.signAndEncryptMessage(publicKeys, this._privateKey, plaintext, callback);
} else {
// if no public keys are available encrypt for myself
openpgp.signAndEncryptMessage([this._publicKey], this._privateKey, plaintext, callback);
}
2013-10-11 15:30:03 -04:00
};
/**
* [decrypt description]
* @param {String} ciphertext The encrypted PGP message block
* @param {String} publicKeyArmored The public key used to sign the message
* @param {Function} callback(error, plaintext, signaturesValid) signaturesValid is undefined in case there are no signature, null in case there are signatures but the wrong public key or no key was used to verify, true if the signature was successfully verified, or false if the signataure verification failed.
2013-10-11 15:30:03 -04:00
*/
2014-01-24 07:26:29 -05:00
PGP.prototype.decrypt = function(ciphertext, publicKeyArmored, callback) {
var publicKeys, message, signaturesValid;
2013-10-11 15:30:03 -04:00
2014-01-24 07:26:29 -05:00
// check keys
if (!this._privateKey) {
callback(new Error('Error decrypting. Keys must be set!'));
return;
2013-10-11 15:30:03 -04:00
}
// read keys and ciphertext message
try {
if (publicKeyArmored) {
// parse public keys if available ...
publicKeys = openpgp.key.readArmored(publicKeyArmored).keys;
} else {
// use own public key to know if signatures are available
publicKeys = [this._publicKey];
}
2014-01-24 07:26:29 -05:00
message = openpgp.message.readArmored(ciphertext);
} catch (err) {
callback(new Error('Error parsing encrypted PGP message!'));
return;
}
// decrypt and verify pgp message
openpgp.decryptAndVerifyMessage(this._privateKey, publicKeys, message, onDecrypted);
function onDecrypted(err, decrypted) {
2014-02-28 11:51:08 -05:00
if (err) {
callback(new Error('Error decrypting and verifying PGP message!'));
2014-02-28 11:51:08 -05:00
return;
}
// check if signatures are valid
if (decrypted.signatures.length > 0) {
signaturesValid = true; // signature is correct
for (var i = 0; i < decrypted.signatures.length; i++) {
if (decrypted.signatures[i].valid === false) {
signaturesValid = false; // signature is wrong ... message was tampered with
break;
} else if (decrypted.signatures[i].valid === null) {
signaturesValid = null; // signature not found for the specified public key
break;
}
}
}
// return decrypted plaintext
callback(null, decrypted.text, signaturesValid);
}
2013-10-11 15:30:03 -04:00
};
return PGP;
});