Object identifier type

This commit is contained in:
Ismael Bejarano 2016-08-12 00:22:46 -03:00 committed by Sanjana Rajan
parent b22f84f9b9
commit 01be192a35
4 changed files with 114 additions and 0 deletions

View File

@ -77,6 +77,12 @@ export { default as S2K } from './type/s2k';
*/
export { default as Keyid } from './type/keyid';
/**
* @see module:type/oid
* @name module:openpgp.Oid
*/
export { default as Oid } from './type/oid';
/**
* @see module:encoding/armor
* @name module:openpgp.armor

69
src/type/oid.js Normal file
View File

@ -0,0 +1,69 @@
// OpenPGP.js - An OpenPGP implementation in javascript
// Copyright (C) 2015-2016 Decentral
//
// 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 3.0 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
/**
* Wrapper to an Oid value<br/>
* <br/>
* An object identifier type from {@link https://tools.ietf.org/html/rfc6637#section-11|RFC6637, section 11}.
* @requires util
* @module type/oid
*/
'use strict';
import util from '../util.js';
module.exports = Oid;
/**
* @constructor
*/
function Oid(oid) {
if (typeof oid === 'undefined') {
oid = '';
} else if (util.isArray(oid)) {
oid = util.bin2str(oid);
} else if (util.isUint8Array(oid)) {
oid = util.Uint8Array2str(oid);
}
this.oid = oid;
}
/**
* Method to read an Oid object
* @param {Uint8Array} input Where to read the Oid from
* @return {Number} Number of read bytes
*/
Oid.prototype.read = function (input) {
if (input.length >= 1) {
var length = input[0];
if (input.length >= 1+length) {
this.oid = util.Uint8Array2str(input.subarray(1, 1+length));
return 1+this.oid.length;
}
}
throw new Error('Invalid oid');
};
/**
* Serialize an Oid object
* @return {Uint8Array} Array with the serialized value the Oid
*/
Oid.prototype.write = function () {
return util.str2Uint8Array(
String.fromCharCode(this.oid.length)+this.oid);
};

View File

@ -7,5 +7,6 @@ describe('General', function () {
require('./key.js');
require('./openpgp.js');
require('./hkp.js');
require('./oid.js');
});

38
test/general/oid.js Normal file
View File

@ -0,0 +1,38 @@
'use strict';
var openpgp = typeof window !== 'undefined' && window.openpgp ? window.openpgp : require('../../dist/openpgp');
var expect = require('chai').expect;
describe('Oid tests', function() {
var Oid = openpgp.Oid;
var p256_oid = new Uint8Array([0x2A, 0x86, 0x48, 0xCE, 0x3D, 0x03, 0x01, 0x07]);
var p384_oid = new Uint8Array([0x2B, 0x81, 0x04, 0x00, 0x22]);
var p521_oid = new Uint8Array([0x2B, 0x81, 0x04, 0x00, 0x23]);
it('Constructing', function() {
var oids = [p256_oid, p384_oid, p521_oid];
oids.forEach(function (data) {
var oid = new Oid(data);
expect(oid).to.exist;
expect(oid.oid).to.exist;
expect(oid.oid).to.have.length(data.length);
expect(oid.oid).to.equal(openpgp.util.Uint8Array2str(data));
});
});
it('Reading and writing', function() {
var oids = [p256_oid, p384_oid, p521_oid];
oids.forEach(function (data) {
data = openpgp.util.concatUint8Array([new Uint8Array([data.length]), data]);
var oid = new Oid();
expect(oid.read(data)).to.equal(data.length);
expect(oid.oid).to.exist;
expect(oid.oid).to.have.length(data.length-1);
expect(oid.oid).to.equal(openpgp.util.Uint8Array2str(data.subarray(1)));
var result = oid.write();
expect(result).to.exist;
expect(result).to.have.length(data.length);
expect(result[0]).to.equal(data.length-1);
expect(openpgp.util.Uint8Array2str(result.subarray(1))).to.equal(openpgp.util.Uint8Array2str(data.subarray(1)));
});
});
});