get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 44425,
    "url": "https://patches.dpdk.org/api/patches/44425/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20180907171311.20371-1-marko.kovacevic@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": "<20180907171311.20371-1-marko.kovacevic@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20180907171311.20371-1-marko.kovacevic@intel.com",
    "date": "2018-09-07T17:13:09",
    "name": "[v1,0/2] FIPS validation capability",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 853,
        "url": "https://patches.dpdk.org/api/people/853/?format=api",
        "name": "Kovacevic, Marko",
        "email": "marko.kovacevic@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20180907171311.20371-1-marko.kovacevic@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/44425/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/44425/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 A1C2B4F98;\n\tFri,  7 Sep 2018 19:15:05 +0200 (CEST)",
            "from mga03.intel.com (mga03.intel.com [134.134.136.65])\n\tby dpdk.org (Postfix) with ESMTP id 294914F91\n\tfor <dev@dpdk.org>; Fri,  7 Sep 2018 19:15:03 +0200 (CEST)",
            "from orsmga002.jf.intel.com ([10.7.209.21])\n\tby orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t07 Sep 2018 10:15:03 -0700",
            "from silpixa00399502.ir.intel.com (HELO\n\tsilpixa00399502.ger.corp.intel.com) ([10.237.223.218])\n\tby orsmga002.jf.intel.com with ESMTP; 07 Sep 2018 10:15:01 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.53,343,1531810800\"; d=\"scan'208\";a=\"89848902\"",
        "From": "Marko Kovacevic <marko.kovacevic@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "akhil.goyal@nxp.com, roy.fan.zhang@intel.com,\n\tMarko Kovacevic <marko.kovacevic@intel.com>",
        "Date": "Fri,  7 Sep 2018 18:13:09 +0100",
        "Message-Id": "<20180907171311.20371-1-marko.kovacevic@intel.com>",
        "X-Mailer": "git-send-email 2.9.5",
        "Subject": "[dpdk-dev] [PATCH v1 0/2] FIPS validation capability",
        "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": "Adding capability into DPDK to allow certification for FIPS\nvalidation, I have just added one test for one algo will be adding other\nalgos into other versions of the patch and i will be refactoring the code and\ncleaning the parser once i start adding the different algos.\n\nMarko Kovacevic (2):\n  test/test: cryptodev application for FIPS certification\n  test/test: cryptodev application parser for FIPS certification\n\n test/test/Makefile                           |   4 +\n test/test/test_cryptodev_fips.c              | 771 +++++++++++++++++++++++++++\n test/test/test_cryptodev_fips_parse.h        | 156 ++++++\n test/test/test_cryptodev_fips_parse_aes.c    | 399 ++++++++++++++\n test/test/test_cryptodev_fips_parse_common.c | 330 ++++++++++++\n 5 files changed, 1660 insertions(+)\n create mode 100644 test/test/test_cryptodev_fips.c\n create mode 100644 test/test/test_cryptodev_fips_parse.h\n create mode 100644 test/test/test_cryptodev_fips_parse_aes.c\n create mode 100644 test/test/test_cryptodev_fips_parse_common.c",
    "diff": null,
    "prefixes": [
        "v1",
        "0/2"
    ]
}