Show a cover letter.

GET /api/covers/56623/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 56623,
    "url": "http://patches.dpdk.org/api/covers/56623/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20190717125111.11288-1-arkadiuszx.kusztal@intel.com/",
    "project": {
        "id": 1,
        "url": "http://patches.dpdk.org/api/projects/1/?format=api",
        "name": "DPDK",
        "link_name": "dpdk",
        "list_id": "dev.dpdk.org",
        "list_email": "dev@dpdk.org",
        "web_url": "http://core.dpdk.org",
        "scm_url": "git://dpdk.org/dpdk",
        "webscm_url": "http://git.dpdk.org/dpdk",
        "list_archive_url": "https://inbox.dpdk.org/dev",
        "list_archive_url_format": "https://inbox.dpdk.org/dev/{}",
        "commit_url_format": ""
    },
    "msgid": "<20190717125111.11288-1-arkadiuszx.kusztal@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190717125111.11288-1-arkadiuszx.kusztal@intel.com",
    "date": "2019-07-17T12:51:00",
    "name": "[v4,00/11] Rework API for RSA algorithm in asymmetric crypto",
    "submitter": {
        "id": 452,
        "url": "http://patches.dpdk.org/api/people/452/?format=api",
        "name": "Arkadiusz Kusztal",
        "email": "arkadiuszx.kusztal@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20190717125111.11288-1-arkadiuszx.kusztal@intel.com/mbox/",
    "series": [
        {
            "id": 5565,
            "url": "http://patches.dpdk.org/api/series/5565/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=5565",
            "date": "2019-07-17T12:51:00",
            "name": "Rework API for RSA algorithm in asymmetric crypto",
            "version": 4,
            "mbox": "http://patches.dpdk.org/series/5565/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/56623/comments/",
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@dpdk.org",
        "Delivered-To": "patchwork@dpdk.org",
        "Received": [
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 0315C1B9D9;\n\tWed, 17 Jul 2019 14:54:32 +0200 (CEST)",
            "from mga07.intel.com (mga07.intel.com [134.134.136.100])\n\tby dpdk.org (Postfix) with ESMTP id 04B2D1B9A0\n\tfor <dev@dpdk.org>; Wed, 17 Jul 2019 14:54:29 +0200 (CEST)",
            "from fmsmga001.fm.intel.com ([10.253.24.23])\n\tby orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t17 Jul 2019 05:54:28 -0700",
            "from akusztax-mobl.ger.corp.intel.com ([10.104.12.189])\n\tby fmsmga001.fm.intel.com with ESMTP; 17 Jul 2019 05:54:26 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.64,274,1559545200\"; d=\"scan'208\";a=\"187552967\"",
        "From": "Arek Kusztal <arkadiuszx.kusztal@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "akhil.goyal@nxp.com, fiona.trahe@intel.com, shallyv@marvell.com,\n\tdamianx.nowak@intel.com, Arek Kusztal <arkadiuszx.kusztal@intel.com>",
        "Date": "Wed, 17 Jul 2019 14:51:00 +0200",
        "Message-Id": "<20190717125111.11288-1-arkadiuszx.kusztal@intel.com>",
        "X-Mailer": "git-send-email 2.19.1.windows.1",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH v4 00/11] Rework API for RSA algorithm in\n\tasymmetric crypto",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "DPDK patches and discussions <dev.dpdk.org>",
        "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>",
        "List-Archive": "<http://mails.dpdk.org/archives/dev/>",
        "List-Post": "<mailto:dev@dpdk.org>",
        "List-Help": "<mailto:dev-request@dpdk.org?subject=help>",
        "List-Subscribe": "<https://mails.dpdk.org/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "Split into smaller commits, in order from least disputable ones.\nOpen things beside this:\n1. Creating padding struct\n2. Padding parameters (seedlen, optional label etc) \n3. Leading zeroes questions.\n4. Random number requirements.\n5. Capabilities.\n6. Verify signature field when none padding.\n\nv4:\n- change API comments from length -> array allocation\nto avoid ambiguity\n\nv3:\n- split into smaller patches\n- removed padding struct changes\n- rebased against patches from CRT patches from Ayuj Verma\n\nv2:\n- Field for singature verification when padding none selected was added\n- Removed details from RFC\n- Simplified padding struct\n- Added padding none test case\n\nThis patchset depends on following patches:\n[1] \ntest/crypto: move rsa enqueue/dequeue into separate functions\n(http://patchwork.dpdk.org/patch/56342/)\n[2]\ntest/crypto: add tests for RSA key type CRT\n(http://patchwork.dpdk.org/patch/56343/)\n\nArek Kusztal (11):\n  cryptodev: change RSA API comments about primes\n  cryptodev: add cipher field to RSA op\n  crypto/openssl: add cipher field to openssl RSA implementation\n  test: add cipher field to RSA test\n  cryptodev: add information about message format when signing with RSA\n  cryptodev: remove RSA PKCS1 BT0 padding\n  openssl: remove RSA PKCS1_5 BT0 padding\n  test: remove RSA PKCS1_5 BT0 padding from test cases\n  cryptodev: add RSA padding none description\n  test: add pkcs1_5 padding simulation\n  test: add RSA PKCS1_5 padding case when no padding selected\n\n app/test/test_cryptodev_asym.c           | 53 ++++++++++++++++++++------\n app/test/test_cryptodev_asym_util.h      | 54 +++++++++++++++++++++++++++\n drivers/crypto/openssl/rte_openssl_pmd.c | 12 +++---\n lib/librte_cryptodev/rte_crypto_asym.h   | 64 ++++++++++++++++++++++++--------\n 4 files changed, 149 insertions(+), 34 deletions(-)"
}