Changed unitttests and keyring to use bundled openpgp and updated keyring to use openpgp.key instead of packetlists.
Added getUserIds() to key. Reenabled keyring ci tests.
This commit is contained in:
parent
30332003f8
commit
bfba0eca0c
|
@ -23,11 +23,12 @@ module.exports = function(grunt) {
|
|||
},
|
||||
unittests: {
|
||||
files: {
|
||||
'test/test-bundle.js': []
|
||||
'test/lib/test-bundle.js': []
|
||||
},
|
||||
options: {
|
||||
debug: true,
|
||||
alias: './test/test-all.js:test-bundle.js'
|
||||
alias: './test/test-all.js:unittests',
|
||||
external: [ 'openpgp' ]
|
||||
}
|
||||
},
|
||||
ci_tests: {
|
||||
|
|
2
Makefile
2
Makefile
|
@ -35,7 +35,7 @@ bundle:
|
|||
@browserify -d -r ./src/:openpgp > ./resources/openpgp.debug.js
|
||||
|
||||
bundle-test:
|
||||
@browserify -d -r ./test/test-all.js:test-bundle.js > ./test/test-bundle.js
|
||||
@browserify -d -r ./test/test-all.js:unittests > ./test/lib/test-bundle.js
|
||||
|
||||
bundle-ci-test:
|
||||
@browserify -d -x openpgp -r ./test/ci-tests-all.js:ci-tests > ./test/lib/ci-tests-bundle.js
|
||||
|
|
File diff suppressed because one or more lines are too long
13
src/key.js
13
src/key.js
|
@ -119,6 +119,19 @@ Key.prototype.getPrivateKeyPacket = function(keyIds) {
|
|||
return findKey(keys, keyIds);
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns userids
|
||||
* @return {string} userid[]
|
||||
*/
|
||||
Key.prototype.getUserIds = function() {
|
||||
var userids = [];
|
||||
var useridPackets = this.packets.filterByTag(enums.packet.userid);
|
||||
for (var i = 0; i < useridPackets.length; i++) {
|
||||
userids.push(useridPackets[i].write());
|
||||
}
|
||||
return userids;
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns true if this is a public key
|
||||
* @return {Boolean}
|
||||
|
|
173
src/keyring.js
173
src/keyring.js
|
@ -15,17 +15,14 @@
|
|||
// License along with this library; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
var packet = require('./packet');
|
||||
var enums = require('./enums.js');
|
||||
var armor = require('./encoding/armor.js');
|
||||
var openpgp = require('openpgp');
|
||||
|
||||
/**
|
||||
* @class
|
||||
* @classdesc The class that deals with storage of the keyring. Currently the only option is to use HTML5 local storage.
|
||||
*/
|
||||
var keyring = function() {
|
||||
this.armoredPacketlists = [];
|
||||
this.parsedPacketlists = [];
|
||||
this.keys = [];
|
||||
|
||||
/**
|
||||
* Initialization routine for the keyring. This method reads the
|
||||
|
@ -33,17 +30,15 @@ var keyring = function() {
|
|||
* This method is called by openpgp.init().
|
||||
*/
|
||||
function init() {
|
||||
var armoredPacketlists = JSON.parse(window.localStorage.getItem("armoredPacketlists"));
|
||||
if (armoredPacketlists === null || armoredPacketlists.length === 0) {
|
||||
armoredPacketlists = [];
|
||||
}
|
||||
this.armoredPacketlists = armoredPacketlists;
|
||||
|
||||
var packetlist;
|
||||
for (var i = 0; i < armoredPacketlists.length; i++) {
|
||||
packetlist = new packet.list();
|
||||
packetlist.read(armoredPacketlists[i]);
|
||||
this.parsedPacketlists.push(packetlist);
|
||||
var armoredKeys = JSON.parse(window.localStorage.getItem("armoredKeys"));
|
||||
if (armoredKeys !== null && armoredKeys.length === 0) {
|
||||
var key;
|
||||
for (var i = 0; i < armoredKeys.length; i++) {
|
||||
key = openpgp.key.readArmored(armoredKeys[i]);
|
||||
this.keys.push(key);
|
||||
}
|
||||
} else {
|
||||
this.keys = [];
|
||||
}
|
||||
}
|
||||
this.init = init;
|
||||
|
@ -53,60 +48,50 @@ var keyring = function() {
|
|||
* The privateKeys array and publicKeys array gets Stringified using JSON
|
||||
*/
|
||||
function store() {
|
||||
window.localStorage.setItem("armoredPacketlists", JSON.stringify(this.armoredPacketlists));
|
||||
var armoredKeys = [];
|
||||
for (var i = 0; i < this.keys.length; i++) {
|
||||
armoredKeys.push(this.keys[i].armor());
|
||||
}
|
||||
window.localStorage.setItem("armoredKeys", JSON.stringify(armoredKeys));
|
||||
}
|
||||
this.store = store;
|
||||
|
||||
function emailPacketCheck(packet, email) {
|
||||
var emailMatch = false;
|
||||
var packetEmail;
|
||||
function emailKeyCheck(key, email) {
|
||||
email = email.toLowerCase();
|
||||
if (packet.tag == enums.packet.userid) {
|
||||
packetEmail = packet.userid;
|
||||
//we need to get just the email from the userid packet
|
||||
packetEmail = packetEmail.split('<')[1].split('<')[0].trim.toLowerCase();
|
||||
if (packetEmail == email) {
|
||||
emailMatch = true;
|
||||
}
|
||||
}
|
||||
return emailMatch;
|
||||
}
|
||||
|
||||
function idPacketCheck(packet, id) {
|
||||
if (packet.getKeyId && packet.getKeyId().write() == id) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
function helperCheckIdentityAndPacketMatch(identityFunction, identityInput, packetType, packetlist) {
|
||||
var packet;
|
||||
for (var l = 0; l < packetlist.length; l++) {
|
||||
packet = packetlist[l];
|
||||
identityMatch = identityFunction(packet, identityInput);
|
||||
if (!packetType) {
|
||||
packetMatch = true;
|
||||
} else if (packet.tag == packetType) {
|
||||
packetMatch = true;
|
||||
}
|
||||
if (packetMatch && identityMatch) {
|
||||
var keyEmails = key.getUserIds();
|
||||
for (var i; i < keyEmails.length; i++) {
|
||||
//we need to get just the email from the userid key
|
||||
keyEmail = keyEmails[i].split('<')[1].split('>')[0].trim().toLowerCase();
|
||||
if (keyEmail == email) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
function checkForIdentityAndPacketMatch(identityFunction, identityInput, packetType) {
|
||||
function idKeyCheck(key, id) {
|
||||
var keyid = key.getKeyId();
|
||||
if (keyid && keyid.write() == id) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
function checkForIdentityAndPacketMatch(identityFunction, identityInput, keyType) {
|
||||
var results = [];
|
||||
var packetlist;
|
||||
var identityMatch;
|
||||
var packetMatch;
|
||||
for (var p = 0; p < this.parsedPacketlists.length; p++) {
|
||||
identityMatch = false;
|
||||
packetMatch = false;
|
||||
packetlist = this.parsedPacketlists[p];
|
||||
if (helperCheckIdentityAndPacketMatch(identityFunction, identityInput, packetType, packetlist)) {
|
||||
results.push(packetlist);
|
||||
for (var p = 0; p < this.keys.length; p++) {
|
||||
var key = this.keys[p];
|
||||
switch (keyType) {
|
||||
case openpgp.enums.packet.public_key:
|
||||
if (key.isPublic() && identityFunction(identityInput, key)) {
|
||||
results.push(key);
|
||||
}
|
||||
break;
|
||||
case openpgp.enums.packet.private_key:
|
||||
if (key.isPrivate() && identityFunction(identityInput, key)) {
|
||||
results.push(key);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
return results;
|
||||
|
@ -115,74 +100,76 @@ var keyring = function() {
|
|||
|
||||
/**
|
||||
* searches all public keys in the keyring matching the address or address part of the user ids
|
||||
* @param {String} email_address
|
||||
* @return {openpgp_msg_publickey[]} The public keys associated with provided email address.
|
||||
* @param {String} email email address to search for
|
||||
* @return {openpgp.key.Key[]} The public keys associated with provided email address.
|
||||
*/
|
||||
function getPublicKeyForAddress(email) {
|
||||
return checkForIdentityAndPacketMatch(emailPacketCheck, email, enums.packet.public_key);
|
||||
return checkForIdentityAndPacketMatch(emailPacketCheck, email, openpgp.enums.packet.public_key);
|
||||
}
|
||||
this.getPublicKeyForAddress = getPublicKeyForAddress;
|
||||
|
||||
/**
|
||||
* Searches the keyring for a private key containing the specified email address
|
||||
* @param {String} email_address email address to search for
|
||||
* @return {openpgp_msg_privatekey[]} private keys found
|
||||
* @param {String} email email address to search for
|
||||
* @return {openpgp.key.Key[]} private keys found
|
||||
*/
|
||||
function getPrivateKeyForAddress(email_address) {
|
||||
return checkForIdentityAndPacketMatch(emailPacketCheck, email, enums.packet.secret_key);
|
||||
function getPrivateKeyForAddress(email) {
|
||||
return checkForIdentityAndPacketMatch(emailPacketCheck, email, openpgp.enums.packet.secret_key);
|
||||
}
|
||||
this.getPrivateKeyForAddress = getPrivateKeyForAddress;
|
||||
|
||||
/**
|
||||
* Searches the keyring for public keys having the specified key id
|
||||
* @param {String} keyId provided as string of hex number (lowercase)
|
||||
* @return {openpgp_msg_privatekey[]} public keys found
|
||||
* @return {openpgp.key.Key[]} public keys found
|
||||
*/
|
||||
function getPacketlistsForKeyId(keyId) {
|
||||
function getKeysForKeyId(keyId) {
|
||||
return this.checkForIdentityAndPacketMatch(idPacketCheck, keyId);
|
||||
}
|
||||
this.getPacketlistsForKeyId = getPacketlistsForKeyId;
|
||||
this.getKeysForKeyId = getKeysForKeyId;
|
||||
|
||||
/**
|
||||
* Imports a packet list (public or private key block) from an ascii armored message
|
||||
* @param {String} armored message to read the packets/key from
|
||||
* Imports a key from an ascii armored message
|
||||
* @param {String} armored message to read the keys/key from
|
||||
*/
|
||||
function importPacketlist(armored) {
|
||||
this.armoredPacketlists.push(armored);
|
||||
|
||||
var dearmored = armor.decode(armored.replace(/\r/g, '')).data;
|
||||
|
||||
packetlist = new packet.list();
|
||||
packetlist.read(dearmored);
|
||||
this.parsedPacketlists.push(packetlist);
|
||||
function importKey(armored) {
|
||||
this.keys.push(openpgp.key.readArmored(armored));
|
||||
|
||||
return true;
|
||||
}
|
||||
this.importPacketlist = importPacketlist;
|
||||
this.importKey = importKey;
|
||||
|
||||
/**
|
||||
* TODO
|
||||
* returns the openpgp_msg_privatekey representation of the public key at public key ring index
|
||||
* @param {Integer} index the index of the public key within the publicKeys array
|
||||
* @return {openpgp_msg_privatekey} the public key object
|
||||
* returns the armored message representation of the key at key ring index
|
||||
* @param {Integer} index the index of the key within the array
|
||||
* @return {String} armored message representing the key object
|
||||
*/
|
||||
function exportPublicKey(index) {
|
||||
return this.publicKey[index];
|
||||
function exportKey(index) {
|
||||
return this.keys[index].armor();
|
||||
}
|
||||
this.exportPublicKey = exportPublicKey;
|
||||
this.exportKey = exportKey;
|
||||
|
||||
/**
|
||||
* TODO
|
||||
* Removes a public key from the public key keyring at the specified index
|
||||
* @param {Integer} index the index of the public key within the publicKeys array
|
||||
* @return {openpgp_msg_privatekey} The public key object which has been removed
|
||||
* @return {openpgp.key.Key} The public key object which has been removed
|
||||
*/
|
||||
function removePublicKey(index) {
|
||||
var removed = this.publicKeys.splice(index, 1);
|
||||
this.store();
|
||||
function removeKey(index) {
|
||||
var removed = this.keys.splice(index, 1);
|
||||
|
||||
return removed;
|
||||
}
|
||||
this.removePublicKey = removePublicKey;
|
||||
this.removeKey = removeKey;
|
||||
|
||||
/**
|
||||
* returns the armored message representation of the public key portion of the key at key ring index
|
||||
* @param {Integer} index the index of the key within the array
|
||||
* @return {String} armored message representing the public key object
|
||||
*/
|
||||
function exportPublicKey(index) {
|
||||
return this.keys[index].toPublic().armor();
|
||||
}
|
||||
this.exportPublicKey = exportPublicKey;
|
||||
|
||||
};
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
var openpgp = require('openpgp');
|
||||
//keyring = require('../../src/keyring.js');
|
||||
var openpgp = require('openpgp'),
|
||||
keyring = require('../src/keyring.js');
|
||||
|
||||
'use strict';
|
||||
|
||||
|
@ -61,17 +61,17 @@ describe('Openpgp integration tests', function() {
|
|||
});
|
||||
});
|
||||
|
||||
// describe('Import key pair', function() {
|
||||
// it('should work', function(done) {
|
||||
// // clear any keypair already in the keychain
|
||||
// keyring.init();
|
||||
// // import private key
|
||||
// keyring.importPacketlist(privkey);
|
||||
// // import public key
|
||||
// keyring.importPacketlist(pubkey);
|
||||
// done();
|
||||
// });
|
||||
// });
|
||||
describe('Import key pair', function() {
|
||||
it('should work', function(done) {
|
||||
// clear any keypair already in the keychain
|
||||
keyring.init();
|
||||
// import private key
|
||||
keyring.importKey(privkey);
|
||||
// import public key
|
||||
keyring.importKey(pubkey);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
describe('Encryption', function() {
|
||||
var message = 'asdfs\n\nThursday, Nov 21, 2013 7:38 PM asdf@example.com wrote:\n' +
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
var unit = require('../../unit.js');
|
||||
|
||||
unit.register("AES Rijndael cipher test with test vectors from ecb_tbl.txt", function() {
|
||||
var openpgp = require('../../../');
|
||||
var openpgp = require('openpgp');
|
||||
var util = openpgp.util;
|
||||
|
||||
var result = new Array();
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
var unit = require('../../unit.js');
|
||||
|
||||
unit.register("Blowfish cipher test with test vectors from http://www.schneier.com/code/vectors.txt", function() {
|
||||
var openpgp = require('../../../'),
|
||||
var openpgp = require('openpgp'),
|
||||
util = openpgp.util,
|
||||
BFencrypt = openpgp.crypto.cipher.blowfish;
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
var unit = require('../../unit.js');
|
||||
|
||||
unit.register("CAST-128 cipher test with test vectors from RFC2144", function() {
|
||||
var openpgp = require('../../../'),
|
||||
var openpgp = require('openpgp'),
|
||||
util = openpgp.util;
|
||||
|
||||
var result = [];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
var unit = require('../../unit.js');
|
||||
|
||||
unit.register("TripleDES (EDE) cipher test with test vectors from http://csrc.nist.gov/publications/nistpubs/800-20/800-20.pdf", function() {
|
||||
var openpgp = require('../../../'),
|
||||
var openpgp = require('openpgp'),
|
||||
util = openpgp.util;
|
||||
|
||||
var result = [];
|
||||
|
@ -99,7 +99,7 @@ unit.register("TripleDES (EDE) cipher test with test vectors from http://csrc.ni
|
|||
|
||||
|
||||
unit.register("DES encrypt/decrypt padding tests", function () {
|
||||
var openpgp = require('../../../'),
|
||||
var openpgp = require('openpgp'),
|
||||
util = openpgp.util;
|
||||
|
||||
var result = [];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
var unit = require('../../unit.js');
|
||||
|
||||
unit.register("Twofish test with test vectors from http://www.schneier.com/code/ecb_ival.txt", function() {
|
||||
var openpgp = require('../../../'),
|
||||
var openpgp = require('openpgp'),
|
||||
util = openpgp.util;
|
||||
|
||||
function TFencrypt(block, key) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
var unit = require('../unit.js');
|
||||
|
||||
unit.register("Functional testing of openpgp.crypto.* methods", function() {
|
||||
var openpgp = require('../../');
|
||||
var openpgp = require('openpgp');
|
||||
var util = openpgp.util;
|
||||
var result = [];
|
||||
var RSApubMPIstrs = [
|
||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
var unit = require('../../unit.js');
|
||||
|
||||
unit.register("MD5 test with test vectors from RFC 1321", function() {
|
||||
var openpgp = require('../../../'),
|
||||
var openpgp = require('openpgp'),
|
||||
util = openpgp.util,
|
||||
MD5 = openpgp.crypto.hash.md5;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ var unit = require('../../unit.js');
|
|||
|
||||
unit.register("RIPE-MD 160 bits test with test vectors from http://homes.esat.kuleuven.be/~bosselae/ripemd160.html", function() {
|
||||
|
||||
var openpgp = require('../../../'),
|
||||
var openpgp = require('openpgp'),
|
||||
util = openpgp.util,
|
||||
RMDstring = openpgp.crypto.hash.ripemd;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ var unit = require('../../unit.js');
|
|||
|
||||
|
||||
unit.register("SHA* test with test vectors from NIST FIPS 180-2", function() {
|
||||
var openpgp = require('../../../'),
|
||||
var openpgp = require('openpgp'),
|
||||
util = openpgp.util,
|
||||
hash = openpgp.crypto.hash;
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
var unit = require('../unit.js');
|
||||
|
||||
unit.register("Key generation/encryption/decryption", function() {
|
||||
var openpgp = require('../../');
|
||||
var openpgp = require('openpgp');
|
||||
var result = [];
|
||||
var testHelper = function(passphrase, userid, message) {
|
||||
var key = openpgp.generateKeyPair(openpgp.enums.publicKey.rsa_encrypt_sign, 512,
|
||||
|
@ -37,7 +37,7 @@ unit.register("Key generation/encryption/decryption", function() {
|
|||
});
|
||||
|
||||
unit.register("Message encryption/decryption", function() {
|
||||
var openpgp = require('../../');
|
||||
var openpgp = require('openpgp');
|
||||
|
||||
var result = [];
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
var unit = require('../unit.js');
|
||||
|
||||
unit.register("Keyring testing", function() {
|
||||
var openpgp = require('../../');
|
||||
var openpgp = require('openpgp');
|
||||
var keyring = require('../../src/keyring.js');
|
||||
var result = [];
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ var unit = require('../unit.js');
|
|||
|
||||
unit.register("Packet testing", function() {
|
||||
|
||||
var openpgp = require('../../');
|
||||
var openpgp = require('openpgp');
|
||||
|
||||
var armored_key =
|
||||
'-----BEGIN PGP PRIVATE KEY BLOCK-----\n' +
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
var unit = require('../unit.js');
|
||||
|
||||
unit.register("Signature testing", function() {
|
||||
var openpgp = require('../../');
|
||||
var openpgp = require('openpgp');
|
||||
|
||||
var priv_key_arm1 =
|
||||
[ '-----BEGIN PGP PRIVATE KEY BLOCK-----',
|
||||
|
@ -459,4 +459,4 @@ var pub_key_arm3 =
|
|||
|
||||
return results;
|
||||
|
||||
});
|
||||
});
|
||||
|
|
|
@ -56,10 +56,11 @@
|
|||
|
||||
|
||||
</style>
|
||||
<script src="lib/openpgp.debug.js"></script>
|
||||
<script src="lib/test-bundle.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
|
||||
var test = require('test-bundle.js');
|
||||
var test = require('unittests');
|
||||
|
||||
function unit_tests() {
|
||||
var table = document.getElementById('unittests');
|
||||
|
|
15571
test/test-bundle.js
15571
test/test-bundle.js
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user