Show a cover letter.

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

{
    "id": 46764,
    "url": "http://patches.dpdk.org/api/covers/46764/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20181012144501.19562-1-marko.kovacevic@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": "<20181012144501.19562-1-marko.kovacevic@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20181012144501.19562-1-marko.kovacevic@intel.com",
    "date": "2018-10-12T14:44:53",
    "name": "[v4,0/8] FIPS validation capability",
    "submitter": {
        "id": 853,
        "url": "http://patches.dpdk.org/api/people/853/?format=api",
        "name": "Kovacevic, Marko",
        "email": "marko.kovacevic@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20181012144501.19562-1-marko.kovacevic@intel.com/mbox/",
    "series": [
        {
            "id": 1876,
            "url": "http://patches.dpdk.org/api/series/1876/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=1876",
            "date": "2018-10-12T14:44:53",
            "name": "FIPS validation capability",
            "version": 4,
            "mbox": "http://patches.dpdk.org/series/1876/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/46764/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 532991B935;\n\tFri, 12 Oct 2018 16:47:02 +0200 (CEST)",
            "from mga01.intel.com (mga01.intel.com [192.55.52.88])\n\tby dpdk.org (Postfix) with ESMTP id 934C01B75F\n\tfor <dev@dpdk.org>; Fri, 12 Oct 2018 16:47:00 +0200 (CEST)",
            "from fmsmga006.fm.intel.com ([10.253.24.20])\n\tby fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t12 Oct 2018 07:46:59 -0700",
            "from silpixa00399502.ir.intel.com (HELO\n\tsilpixa00399502.ger.corp.intel.com) ([10.237.223.218])\n\tby fmsmga006.fm.intel.com with ESMTP; 12 Oct 2018 07:46:58 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.54,372,1534834800\"; d=\"scan'208\";a=\"271863328\"",
        "From": "Marko Kovacevic <marko.kovacevic@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "roy.fan.zhang@intel.com, akhil.goyal@nxp.com,\n\tarkadiuszx.kusztal@intel.com, \n\tMarko Kovacevic <marko.kovacevic@intel.com>",
        "Date": "Fri, 12 Oct 2018 15:44:53 +0100",
        "Message-Id": "<20181012144501.19562-1-marko.kovacevic@intel.com>",
        "X-Mailer": "git-send-email 2.9.5",
        "Subject": "[dpdk-dev] [PATCH v4 0/8] 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": "This sample application is made for the purpose so that users of DPDK\nwho wish to get FIPS certification for their platforms, this sample app enables\nusers to parse test vectors that is gotten from NIST and be able to get\na generated response file which they can then verify and be sure their\nsystem will pass FIPS certification.\n\nMarko Kovacevic (8):\nv4:\n- Added Limitation\n- Changed TDES BLOCK SIZE from 16 -> 8\n  as DES block size is 64bits (main.c)\nv3:\n- Fixed a no-testing bug\n- Fixed some code style issue\n\nv2:\n- Refactor the code.\n- Move the code from test to sample applcation\n\n  examples: add fips validation into examples\n  examples: add aes parser and enablement for test types\n  examples: add hmac parser\n  examples: add TDES parser and enablement for test types\n  examples: add gcm parser\n  examples: add cmac parser and enablement for test types\n  examples: add ccm parser and enablement for test types\n  doc: add guides for fips validation\n\n doc/guides/rel_notes/release_18_11.rst             |    6 +\n doc/guides/sample_app_ug/fips_validation.rst       |  105 ++\n doc/guides/sample_app_ug/index.rst                 |    1 +\n examples/cryptodev_fips_validate/Makefile          |   75 ++\n .../cryptodev_fips_parse_3des.c                    |  259 +++++\n .../cryptodev_fips_parse_aes.c                     |  188 +++\n .../cryptodev_fips_parse_ccm.c                     |  272 +++++\n .../cryptodev_fips_parse_cmac.c                    |  116 ++\n .../cryptodev_fips_parse_gcm.c                     |  125 ++\n .../cryptodev_fips_parse_hmac.c                    |  105 ++\n .../cryptodev_fips_parse_validate.c                |  593 ++++++++++\n .../cryptodev_fips_validate.h                      |  234 ++++\n examples/cryptodev_fips_validate/main.c            | 1221 ++++++++++++++++++++\n examples/cryptodev_fips_validate/meson.build       |   20 +\n 14 files changed, 3320 insertions(+)\n create mode 100644 doc/guides/sample_app_ug/fips_validation.rst\n create mode 100644 examples/cryptodev_fips_validate/Makefile\n create mode 100644 examples/cryptodev_fips_validate/cryptodev_fips_parse_3des.c\n create mode 100644 examples/cryptodev_fips_validate/cryptodev_fips_parse_aes.c\n create mode 100644 examples/cryptodev_fips_validate/cryptodev_fips_parse_ccm.c\n create mode 100644 examples/cryptodev_fips_validate/cryptodev_fips_parse_cmac.c\n create mode 100644 examples/cryptodev_fips_validate/cryptodev_fips_parse_gcm.c\n create mode 100644 examples/cryptodev_fips_validate/cryptodev_fips_parse_hmac.c\n create mode 100644 examples/cryptodev_fips_validate/cryptodev_fips_parse_validate.c\n create mode 100644 examples/cryptodev_fips_validate/cryptodev_fips_validate.h\n create mode 100644 examples/cryptodev_fips_validate/main.c\n create mode 100644 examples/cryptodev_fips_validate/meson.build"
}