Comment typo fixes (#1022)

This commit is contained in:
Alexandre Perrin 2019-12-27 12:47:37 +01:00 committed by Daniel Huigens
parent ba944c8948
commit 0a32f4d5e7
2 changed files with 3 additions and 3 deletions

View File

@ -64,7 +64,7 @@ export function isDataExpired(keyPacket, signature, date = new Date()) {
/**
* Create Binding signature to the key according to the {@link https://tools.ietf.org/html/rfc4880#section-5.2.1}
* @param {module:packet.SecretSubkey|} subkey Subkey key packet
* @param {module:packet.SecretSubkey} subkey Subkey key packet
* @param {module:packet.SecretKey} primaryKey Primary key packet
* @param {Object} options
*/

View File

@ -310,7 +310,7 @@ Key.prototype.getSigningKey = async function (keyId = null, date = new Date(), u
Key.prototype.getEncryptionKey = async function(keyId, date = new Date(), userId = {}) {
const primaryKey = this.keyPacket;
if (await this.verifyPrimaryKey(date, userId) === enums.keyStatus.valid) {
// V4: by convention subkeys are preffered for encryption service
// V4: by convention subkeys are preferred for encryption service
const subKeys = this.subKeys.slice().sort((a, b) => b.keyPacket.created - a.keyPacket.created);
for (let i = 0; i < subKeys.length; i++) {
if (!keyId || subKeys[i].getKeyId().equals(keyId)) {
@ -760,7 +760,7 @@ Key.prototype.verifyAllUsers = async function(keys) {
* The number of seconds after the key creation time that the key expires
* @param {String} curve (optional) Elliptic curve for ECC keys
* @param {Date} date (optional) Override the creation date of the key and the key signatures
* @param {Boolean} subkeys (optional) Indicates whether the subkey should sign rather than encrypt. Defaults to false
* @param {Boolean} sign (optional) Indicates whether the subkey should sign rather than encrypt. Defaults to false
* @returns {Promise<module:key.Key>}
* @async
*/