mirror of
				https://github.com/openpgpjs/openpgpjs.git
				synced 2025-10-14 00:59:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const openpgp = typeof window !== 'undefined' && window.openpgp ? window.openpgp : require('../../dist/openpgp');
 | |
| 
 | |
| const expect = require('chai').expect;
 | |
| 
 | |
| describe('Oid tests', function() {
 | |
|   const OID = openpgp.OID;
 | |
|   const util = openpgp.util;
 | |
|   const p256_oid = new Uint8Array([0x2A, 0x86, 0x48, 0xCE, 0x3D, 0x03, 0x01, 0x07]);
 | |
|   const p384_oid = new Uint8Array([0x2B, 0x81, 0x04, 0x00, 0x22]);
 | |
|   const p521_oid = new Uint8Array([0x2B, 0x81, 0x04, 0x00, 0x23]);
 | |
|   it('Constructing', function() {
 | |
|     const oids = [p256_oid, p384_oid, p521_oid];
 | |
|     oids.forEach(function (data) {
 | |
|       const oid = new OID(data);
 | |
|       expect(oid).to.exist;
 | |
|       expect(oid.oid).to.exist;
 | |
|       expect(oid.oid).to.have.length(data.length);
 | |
|       expect(oid.toHex()).to.equal(util.Uint8Array_to_hex(data));
 | |
|     });
 | |
|   });
 | |
|   it('Reading and writing', function() {
 | |
|     const oids = [p256_oid, p384_oid, p521_oid];
 | |
|     oids.forEach(function (data) {
 | |
|       data = openpgp.util.concatUint8Array([new Uint8Array([data.length]), data]);
 | |
|       const 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.toHex()).to.equal(util.Uint8Array_to_hex(data.subarray(1)));
 | |
|       const result = oid.write();
 | |
|       expect(result).to.exist;
 | |
|       expect(result).to.have.length(data.length);
 | |
|       expect(result[0]).to.equal(data.length-1);
 | |
|       expect(
 | |
|         util.Uint8Array_to_hex(result.subarray(1))
 | |
|       ).to.equal(util.Uint8Array_to_hex(data.subarray(1)));
 | |
|     });
 | |
|   });
 | |
| });
 | 
