mirror of
https://github.com/openpgpjs/openpgpjs.git
synced 2026-03-18 22:28:56 +00:00
and make the high-level API accessible from an asynchronous proxy. Entropy is seeded to worker on each generateKeyPair() call. Allow serialization of packets and custom types for messaging API.
63 lines
2.0 KiB
JavaScript
63 lines
2.0 KiB
JavaScript
// GPG4Browsers - An OpenPGP implementation in javascript
|
|
// Copyright (C) 2011 Recurity Labs GmbH
|
|
//
|
|
// This library is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
// License as published by the Free Software Foundation; either
|
|
// version 2.1 of the License, or (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
/**
|
|
* Implementation of the User ID Packet (Tag 13)<br/>
|
|
* <br/>
|
|
* A User ID packet consists of UTF-8 text that is intended to represent
|
|
* the name and email address of the key holder. By convention, it
|
|
* includes an RFC 2822 [RFC2822] mail name-addr, but there are no
|
|
* restrictions on its content. The packet length in the header
|
|
* specifies the length of the User ID.
|
|
* @requires util
|
|
* @requires enums
|
|
* @module packet/userid
|
|
*/
|
|
|
|
module.exports = Userid;
|
|
|
|
var util = require('../util.js'),
|
|
enums = require('../enums.js');
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function Userid() {
|
|
this.tag = enums.packet.userid;
|
|
/** A string containing the user id. Usually in the form
|
|
* John Doe <john@example.com>
|
|
* @type {String}
|
|
*/
|
|
this.userid = '';
|
|
}
|
|
|
|
/**
|
|
* Parsing function for a user id packet (tag 13).
|
|
* @param {String} input payload of a tag 13 packet
|
|
*/
|
|
Userid.prototype.read = function (bytes) {
|
|
this.userid = util.decode_utf8(bytes);
|
|
};
|
|
|
|
/**
|
|
* Creates a string representation of the user id packet
|
|
* @return {String} string representation
|
|
*/
|
|
Userid.prototype.write = function () {
|
|
return util.encode_utf8(this.userid);
|
|
};
|