it("rsaLengthPublicKey - 2048", () => {
        const key = readCertificatePEM(path.join(__dirname, "../test-fixtures/certs/server_cert_2048.pem"));
        const p = createPublicKey(key);
        rsaLengthPublicKey(p).should.eql(256);
    });