get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

GET /api/patches/61654/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 61654,
    "url": "https://patches.dpdk.org/api/patches/61654/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20191022140429.9008-1-arkadiuszx.kusztal@intel.com/",
    "project": {
        "id": 1,
        "url": "https://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": "<20191022140429.9008-1-arkadiuszx.kusztal@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20191022140429.9008-1-arkadiuszx.kusztal@intel.com",
    "date": "2019-10-22T14:04:24",
    "name": "[v4,0/5] Add session-less, RSA, RSA-CRT to QAT",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 452,
        "url": "https://patches.dpdk.org/api/people/452/?format=api",
        "name": "Arkadiusz Kusztal",
        "email": "arkadiuszx.kusztal@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20191022140429.9008-1-arkadiuszx.kusztal@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/61654/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/61654/checks/",
    "tags": {},
    "related": [],
    "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 0B8871BEA8;\n\tTue, 22 Oct 2019 16:06:21 +0200 (CEST)",
            "from mga11.intel.com (mga11.intel.com [192.55.52.93])\n\tby dpdk.org (Postfix) with ESMTP id 87D0F1BEA3\n\tfor <dev@dpdk.org>; Tue, 22 Oct 2019 16:06:19 +0200 (CEST)",
            "from fmsmga001.fm.intel.com ([10.253.24.23])\n\tby fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t22 Oct 2019 07:06:18 -0700",
            "from akusztax-mobl.ger.corp.intel.com ([10.103.104.118])\n\tby fmsmga001.fm.intel.com with ESMTP; 22 Oct 2019 07:06:16 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.67,327,1566889200\"; d=\"scan'208\";a=\"209681142\"",
        "From": "Arek Kusztal <arkadiuszx.kusztal@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "akhil.goyal@nxp.com, fiona.trahe@intel.com,\n\tArek Kusztal <arkadiuszx.kusztal@intel.com>",
        "Date": "Tue, 22 Oct 2019 16:04:24 +0200",
        "Message-Id": "<20191022140429.9008-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 0/5] Add session-less, RSA, RSA-CRT to QAT",
        "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": "This patchset adds session-less option, RSA algorithm, RSA-CRT algorithm\nto Intel QuickAssist Technology PMD. It also adds session-less test cases\nfor those algorithms.\nTest case for RSA signature with no padding will be sent in a later patch.\n\n[1]crypto/qat: add sessionless implementation to asym pmd\n- this patch adds sessionless option to QAT, already implemented\nalgorithms MOD EXP and MOD INV can be used with sessionless\n[2]crypto/qat: add rsa implementation to asym pmd\n- this patch adds option to use RSA with exponent private key\npair (n,d)\n[3]crypto/qat: add rsa crt implementation to asym pmd\n- this patch adds CRT option to RSA, to improve performance of\ndecryption and creating of signature\n\nv4:\n- fixed compilation issue\n\nAcked-by: Fiona Trahe <fiona.trahe@intel.com>\n\nArek Kusztal (5):\n  crypto/qat: add sessionless implementation to asym pmd\n  crypto/qat: add rsa implementation to asym pmd\n  crypto/qat: add rsa crt implementation to asym pmd\n  test/crypto: add sessionless to asymmetric mod exp\n  test/crypto: add rsa tests to qat and openssl with no padding\n\n app/test/test_cryptodev_asym.c                     | 207 +++++--\n app/test/test_cryptodev_rsa_test_vectors.h         | 226 ++++++++\n doc/guides/cryptodevs/features/qat.ini             |   4 +\n doc/guides/cryptodevs/qat.rst                      |   1 +\n doc/guides/rel_notes/release_19_11.rst             |   8 +\n .../qat/qat_adf/qat_pke_functionality_arrays.h     |  27 +\n drivers/crypto/qat/qat_asym.c                      | 634 ++++++++++++++++-----\n drivers/crypto/qat/qat_asym.h                      |  29 +-\n drivers/crypto/qat/qat_asym_capabilities.h         |  21 +\n drivers/crypto/qat/qat_asym_pmd.c                  |   5 +-\n 10 files changed, 972 insertions(+), 190 deletions(-)",
    "diff": null,
    "prefixes": [
        "v4",
        "0/5"
    ]
}