small fixes

This commit is contained in:
Sanjana Rajan 2017-03-06 20:04:10 -08:00
parent 7bf697769d
commit 7d02154dc9
4 changed files with 10 additions and 2 deletions

View File

@ -48,7 +48,7 @@ export function CleartextMessage(text, signature) {
if (signature && !(signature instanceof sigModule.Signature)) {
throw new Error('Invalid signature input');
}
this.signature = signature || new sigModule.Signature([]);
this.signature = signature || new sigModule.Signature(new packet.List());
}
/**

View File

@ -38,6 +38,7 @@ import config from '../config';
* 3 = PGP MESSAGE
* 4 = PUBLIC KEY BLOCK
* 5 = PRIVATE KEY BLOCK
* 6 = SIGNATURE
*/
function getType(text) {
var reHeader = /^-----BEGIN PGP (MESSAGE, PART \d+\/\d+|MESSAGE, PART \d+|SIGNED MESSAGE|MESSAGE|PUBLIC KEY BLOCK|PRIVATE KEY BLOCK|SIGNATURE)-----$\n/m;

View File

@ -26,6 +26,13 @@ export * from './openpgp';
import * as keyMod from './key';
export const key = keyMod;
/**
* @see module:signature
* @name module:openpgp.signature
*/
import * as signatureMod from './signature';
export const signature = signatureMod;
/**
* @see module:message
* @name module:openpgp.message

View File

@ -32,7 +32,7 @@ import armor from './encoding/armor.js';
/**
* @class
* @classdesc Class that represents an OpenPGP message.
* @classdesc Class that represents an OpenPGP signature.
* Can be an encrypted message, signed message, compressed message or literal message
* @param {module:packet/packetlist} packetlist The packets that form this message
* See {@link http://tools.ietf.org/html/rfc4880#section-11.3}