Internet-Draft | ACVP MAC | March 2025 |
Fussell & Hammett | Expires 2 October 2025 | [Page] |
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 2 October 2025.¶
Copyright (c) 2025 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document.¶
There are no acknowledgements.¶
This document defines the JSON schema for testing HMAC, CMAC, and GMAC implementations with the ACVP specification.¶
The Automated Crypto Validation Protocol (ACVP) defines a mechanism to automatically verify the cryptographic implementation of a software or hardware crypto module. The ACVP specification defines how a crypto module communicates with an ACVP server, including crypto capabilities negotiation, session management, authentication, vector processing and more. The ACVP specification does not define algorithm specific JSON constructs for performing the crypto validation. A series of ACVP sub-specifications define the constructs for testing individual crypto algorithms. Each sub-specification addresses a specific class of crypto algorithms. This sub-specification defines the JSON constructs for testing HMAC, CMAC, and GMAC implementations using ACVP.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 of [RFC2119] and [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
The initial request from the client to the server describing the capabilities of one or several algorithm, mode and revision combinations¶
A collection of test cases that share similar properties within a prompt or response¶
A collection of test groups under a specific algorithm, mode, and revision¶
JSON sent from the server to the client that specifies the correctness of the response¶
The following Message Authentication Code Algorithms MAY be advertised by the ACVP compliant cryptographic module:¶
The ACVP server performs a set of tests on the MAC algorithms in order to assess the correctness and robustness of the implementation. A typical ACVP validation session would require multiple tests to be performed for every supported cryptographic algorithm, such as CMAC-AES, CMAC-TDES, HMAC-SHA-1, HMAC-SHA2-256, etc. This section describes the design of the tests used to validate implementations of MAC algorithms.¶
There is a single test type for MACs (broken into subsections for CMACs). the single test type, algorithm functional test (AFT) can be described as follows:¶
The tests described in this document have the intention of ensuring an implementation is conformant to [SP800-38B] and [FIPS-198-1].¶
ACVP requires crypto modules to register their capabilities. This allows the crypto module to advertise support for specific algorithms, notifying the ACVP server which algorithms need test vectors generated for the validation process. This section describes the constructs for advertising support of MAC algorithms to the ACVP server.¶
The algorithm capabilities MUST be advertised as JSON objects within the 'algorithms' value of the ACVP registration message. The 'algorithms' value is an array, where each array element is an individual JSON object defined in this section. The 'algorithms' value is part of the 'capability_exchange' element of the ACVP JSON registration message. See the ACVP specification [ACVP] for more details on the registration message.¶
Each algorithm implementation MAY rely on other cryptographic primitives. For example, RSA Signature algorithms depend on an underlying hash function. Each of these underlying algorithm primitives must be validated, either separately or as part of the same submission. ACVP provides a mechanism for specifying the required prerequisites:¶
Prerequisites, if applicable, MUST be submitted in the registration as the prereqVals
JSON property array inside each element of the algorithms
array. Each element in the prereqVals
array MUST contain the following properties¶
JSON Property | Description | JSON Type |
---|---|---|
algorithm | a prerequisite algorithm | string |
valValue | algorithm validation number | string |
A "valValue" of "same" SHALL be used to indicate that the prerequisite is being met by a different algorithm in the capability exchange in the same registration.¶
An example description of prerequisites within a single algorithm capability exchange looks like this¶
"prereqVals": [ { "algorithm": "Alg1", "valValue": "Val-1234" }, { "algorithm": "Alg2", "valValue": "same" } ]¶
Each MAC implementation relies on other cryptographic primitives. For example, HMAC uses an underlying SHA algorithm. Each of these underlying algorithm primitives must be validated, either separately or as part of the same submission. ACVP provides a mechanism for specifying the required prerequisites:¶
JSON Value | Description | JSON type | Valid Values |
---|---|---|---|
algorithm | a prerequisite algorithm | string | AES, SHA, TDES with associated mode such as ECB, GCM or digest size |
valValue | algorithm validation number | string | Actual number or "same" |
prereqAlgVal | prerequisite algorithm validation | object with algorithm and valValue properties | See above |
Each MAC algorithm capability advertised is a self-contained JSON object using the following values.¶
JSON Value | Description | JSON type | Valid Values |
---|---|---|---|
algorithm | The MAC algorithm to be validated | string | See Section 5 |
revision | The algorithm testing revision to use | string | "1.0" |
prereqVals | Prerequisite algorithm validations | array of prereqAlgVal objects | See Section 7.2 |
capabilities | The individual MAC capabilities | array of capability objects | See Section 8.1.1, Section 9.1.1, Section 10.1, or Section 11.1 |
Each CMAC-AES algorithm capability advertised is a self-contained JSON object using Table 3. Each capability object describes a separate permutation of direction and key length.¶
JSON Value | Description | JSON type | Valid Values |
---|---|---|---|
direction | The MAC direction(s) to test | array | "gen" and/or "ver" |
keyLen | The keyLen supported | array of integer | [128, 192, 256] |
msgLen | The CMAC message lengths supported in bits, values MUST be mod 8 | Domain | Min: 0, Max: 524288, Inc: 8 |
macLen | The supported mac sizes | Domain | Min: 1, Max: 128 |
'macLen' for CMAC is a Domain of values, the server MAY choose values defined by these rules:¶
'msgLen' for CMAC is a Domain of values, the server MAY choose values defined by these rules:¶
The following is an example JSON object advertising support for CMAC-AES.¶
{ "algorithm": "CMAC-AES", "revision": "1.0", "capabilities": [ { "direction": ["gen", "ver"], "keyLen": [128], "msgLen": [ { "min": 0, "max": 65536, "increment": 8 } ], "macLen": [ { "min": 64, "max": 128, "increment": 8 } ] }, { "direction": ["gen", "ver"], "keyLen": [192], "msgLen": [ { "min": 0, "max": 65536, "increment": 8 } ], "macLen": [ { "min": 64, "max": 128, "increment": 8 } ] }, { "direction": ["gen", "ver"], "keyLen": [256], "msgLen": [ { "min": 0, "max": 65536, "increment": 8 } ], "macLen": [ { "min": 64, "max": 128, "increment": 8 } ] } ] }¶
Each CMAC-TDES algorithm capability advertised is a self-contained JSON object using Table 3. Each capability object describes a separate permutation of direction and key length.¶
JSON Value | Description | JSON type | Valid Values |
---|---|---|---|
direction | The MAC direction(s) to test | array | "gen", "ver" |
keyingOption | The Keying Option used in TDES. Keying option 1 (1) is 3 distinct keys (K1, K2, K3). Keying Option 2 (2) is 2 distinct only suitable for decrypt (K1, K2, K1). Keying option 3 (No longer valid for testing, save TDES KATs) is a single key, now deprecated (K1, K1, K1). | array | 1, 2 |
msgLen | The CMAC message lengths supported in bits, values MUST be mod 8 | Domain | Min: 0, Max: 524288, Inc: 8 |
macLen | The supported mac sizes | Domain | Min: 32, Max: 64 |
'macLen' for CMAC contains a Domain of values, the server may choose values defined by these rules:¶
'msgLen' for CMAC contains a Domain of values, the server may choose values defined by these rules:¶
The following is an example JSON object advertising support for CMAC-TDES.¶
{ "algorithm": "CMAC-TDES", "revision": "1.0", "capabilities": [ { "direction": ["gen", "ver"], "keyingOption": [1], "msgLen": [ { "min": 0, "max": 65536, "increment": 8 } ], "macLen": [ { "min": 32, "max": 64, "increment": 8 } ] } ] }¶
Each algorithm capability advertised is a self-contained JSON object using the following values.¶
JSON Value | Description | JSON Type | Valid Values |
---|---|---|---|
algorithm | The MAC algorithm to be validated | string | "ACVP-AES-GMAC" |
revision | The algorithm testing revision to use | string | "1.0" |
prereqVals | Prerequisite algorithm validations | array of prereqAlgVal objects | See Section 7.2 |
direction | The GMAC direction(s) to test | array | "encrypt", "decrypt" |
keyLen | The keyLen supported | array | 128, 192, 256 |
ivLen | The IV lengths supported in bits, values MUST be mod 8 | domain | Min: 8, Max: 1024, Inc: 8 |
ivGen | The IV generation method (from the perspective of the IUT) | string | "internal", "external" |
ivGenMode | The IV generation mode for use when the IUT is generating IVs | string | "8.2.1", "8.2.2" |
aadLen | The additional authenticated data length in bits | domain | Min: 0, Max: 65536, Inc: 8 |
tagLen | The supported mac/tag lengths | array | 32, 64, 96, 104, 112, 120, 128 |
The following is an example JSON object advertising support for AES-GMAC.¶
{ "algorithm": "ACVP-AES-GMAC", "revision": "1.0", "direction": [ "encrypt", "decrypt" ], "keyLen": [ 128 ], "ivLen": [ 96, 120 ], "ivGen": "external", "ivGenMode": "8.2.2", "aadLen": [ 8, 120 ], "tagLen": [ 32, 128 ] }¶
Each algorithm capability advertised is a self-contained JSON object using the following values.¶
JSON Value | Description | JSON type | Valid Values |
---|---|---|---|
algorithm | The MAC algorithm and mode to be validated | string | See Section 11.2 |
revision | The algorithm testing revision to use | string | "1.0" |
prereqVals | prerequisite algorithm validations | array of prereqAlgVal objects | See Section 7.2 |
keyLen | The keyLen Domain supported by the IUT in bits | domain | Min: 8, Max: 524288, Increment: 8 |
macLen | The supported mac sizes, maximum is dependent on algorithm, see Section 11.2 | domain | Min: 32 |
'keyLen' for HMAC contains a Domain of values, the server MAY choose values defined by these rules:¶
'macLen' for HMAC contains a Domain of values, the server MAY choose values defined by these rules:¶
The following HMAC algorithms contain specific individual properties:¶
Algorithm Value | Block Length | Max MAC Length |
---|---|---|
HMAC-SHA-1 | 512 | 160 |
HMAC-SHA2-224 | 512 | 224 |
HMAC-SHA2-256 | 512 | 256 |
HMAC-SHA2-384 | 1024 | 384 |
HMAC-SHA2-512 | 1024 | 512 |
HMAC-SHA2-512/224 | 1024 | 224 |
HMAC-SHA2-512/256 | 1024 | 256 |
HMAC-SHA3-224 | 1152 | 224 |
HMAC-SHA3-256 | 1088 | 256 |
HMAC-SHA3-384 | 832 | 384 |
HMAC-SHA3-512 | 576 | 512 |
The following is an example JSON object advertising support for HMAC.¶
{ "algorithm": "HMAC-SHA-1", "revision": "1.0", "keyLen": [ { "min": 8, "max": 2048, "increment": 8 } ], "macLen": [ { "min": 80, "max": 160, "increment": 8 } ] }¶
The ACVP server provides test vectors to the ACVP client, which are then processed and returned to the ACVP server for validation. A typical ACVP validation test session would require multiple test vector sets to be downloaded and processed by the ACVP client. Each test vector set represents an individual cryptographic algorithm defined during the capability exchange. This section describes the JSON schema for a test vector set used with HMAC, CMAC, and GMAC algorithms.¶
The test vector set JSON schema is a multi-level hierarchy that contains meta data for the entire vector set as well as individual test vectors to be processed by the ACVP client. The following table describes the JSON elements at the top level of the hierarchy.¶
JSON Values | Description | JSON Type |
---|---|---|
acvVersion | Protocol version identifier | string |
vsId | Unique numeric vector set identifier | integer |
algorithm | Algorithm defined in the capability exchange | string |
mode | Mode defined in the capability exchange | string |
revision | Protocol test revision selected | string |
testGroups | Array of test group JSON objects, which are defined in Section 13 | array |
An example of this would look like this¶
[ { "acvVersion": <version> }, { "vsId": 1, "algorithm": "Alg1", "mode": "Mode1", "revision": "Revision1.0", "testGroups": [ ... ] } ]¶
The ACVP server provides test vectors to the ACVP client, which are then processed and returned to the ACVP server for validation. A typical ACVP validation session would require multiple test vector sets to be downloaded and processed by the ACVP client. Each test vector set represents an individual crypto algorithm, such as HMAC-SHA-1, HMAC-SHA2-224, CMAC-AES, etc. This section describes the JSON schema for a test vector set used with MAC crypto algorithms.¶
The test vector set JSON schema is a multi-level hierarchy that contains meta data for the entire vector set as well as individual test vectors to be processed by the ACVP client. The following table describes the JSON elements at the top level of the hierarchy.¶
JSON Value | Description | JSON type |
---|---|---|
acvVersion | Protocol version identifier | string |
vsId | Unique numeric identifier for the vector set | integer |
algorithm | The algorithm used for the test vectors | string |
revision | The algorithm testing revision to use | string |
testGroups | Array of test group JSON objects, which are defined in Section 13.1.1, Section 13.2.1, Section 13.3.1, or Section 13.4.1 depending on the algorithm | array |
The testGroups element at the top level in the test vector JSON object is an array of test groups. Test vectors are grouped into similar test cases to reduce the amount of data transmitted in the vector set. For instance, all test vectors that use the same key size would be grouped together. The Test Group JSON object contains meta data that applies to all test vectors within the group. The following table describes the secure CMAC-AES JSON elements of the Test Group JSON object.¶
JSON Value | Description | JSON type |
---|---|---|
tgId | Numeric identifier for the test group, unique across the entire vector set | integer |
testType | Test category type | string |
direction | The direction of the tests - gen or ver | string |
keyLen | Length of key in bits to use | integer |
msgLen | Length of message in bits | integer |
macLen | Length of MAC in bits to generate/verify | integer |
tests | Array of individual test vector JSON objects, which are defined in Section 13.1.2 | array |
Each test group contains an array of one or more test cases. Each test case is a JSON object that represents a single test vector to be processed by the ACVP client. The following table describes the JSON elements for each secure MAC test vector.¶
JSON Value | Description | JSON type |
---|---|---|
tcId | Numeric identifier for the test case, unique across the entire vector set | integer |
key | Encryption key to use | hex |
message | Value of the message | hex |
mac | MAC value, for CMAC verify | hex |
The following is an example JSON test vector object for CMAC-AES, truncated for brevity.¶
{ "vsId": 1, "algorithm": "CMAC-AES", "revision": "1.0", "testGroups": [{ "tgId": 4, "testType": "AFT", "direction": "gen", "keyLen": 128, "msgLen": 2752, "macLen": 64, "tests": [{ "tcId": 25, "key": "E2547E38B28B2C24892C133FF4770688", "message": "89DE09D747FB4B2669B59759..." }, { "tcId": 26, "key": "D1D99979CD96C3401291905F53B2ECA4", "message": "6D054A7D1CD161B21F80E658..." }, { "tcId": 27, "key": "672556E105B83BF39FC9E45268BD35D1", "message": "39A3DD0652483A26FB9D71F3..." } ] }, { "tgId": 10, "testType": "AFT", "direction": "ver", "keyLen": 128, "msgLen": 0, "macLen": 64, "tests": [{ "tcId": 73, "key": "D5E09A89B2A4627BF987517B66A51564", "message": "", "mac": "CBBC968859633C24" }, { "tcId": 74, "key": "646A150116ABAA37662FE9D8BB278693", "message": "", "mac": "21D069331196E579" }, { "tcId": 75, "key": "5C185C01FBC57A40FC373F199374D1CC", "message": "", "mac": "9507F00153543DE6" } ] } ] }¶
The testGroups element at the top level in the test vector JSON object is an array of test groups. Test vectors are grouped into similar test cases to reduce the amount of data transmitted in the vector set. For instance, all test vectors that use the same key size would be grouped together. The Test Group JSON object contains meta data that applies to all test vectors within the group. The following table describes the secure CMAC-TDES JSON elements of the Test Group JSON object.¶
JSON Value | Description | JSON type |
---|---|---|
tgId | Numeric identifier for the test group, unique across the entire vector set | integer |
testType | Test category type | string |
direction | The direction of the tests - gen or ver | string |
msgLen | Length of message in bits | integer |
macLen | Length of MAC in bits to generate/verify | integer |
keyingOption | The Keying Option used in TDES. Keying option 1 (1) is 3 distinct keys (K1, K2, K3). Keying Option 2 (2) is 2 distinct only suitable for decrypt (K1, K2, K1). Keying option 3 (No longer valid for testing, save TDES KATs) is a single key, now deprecated (K1, K1, K1). | array |
1, 2 | tests | Array of individual test vector JSON objects, which are defined in Section 13.2.2 |
Each test group contains an array of one or more test cases. Each test case is a JSON object that represents a single test vector to be processed by the ACVP client. The following table describes the JSON elements for each secure MAC test vector.¶
JSON Value | Description | JSON type |
---|---|---|
tcId | Numeric identifier for the test case, unique across the entire vector set | integer |
message | Value of the message | hex |
mac | MAC value, for CMAC verify | hex |
key1, key2, key3 | Encryption keys to use for TDES | hex |
The following is an example JSON test vector object for CMAC-TDES, truncated for brevity.¶
{ "vsId": 1, "algorithm": "CMAC-TDES", "revision": "1.0", "testGroups": [{ "tgId": 4, "testType": "AFT", "direction": "gen", "msgLen": 752, "macLen": 32, "keyingOption": 1, "tests": [{ "tcId": 25, "message": "4D2D07AE0224289BE111...", "key1": "7FFDB31A3A06BF0D", "key2": "5201FFE83CC5253E", "key3": "BBECA60F1D631BB8" }, { "tcId": 26, "message": "7A70F3CE17598AC3553F...", "key1": "82E572E29C84009E", "key2": "28390918155E4891", "key3": "A0D24C94C306FE56" }, { "tcId": 27, "message": "2DAF1E213A6AE9E88FEB...", "key1": "662A89E47D86F6A0", "key2": "CB9D612E199B4AD2", "key3": "AE3AEBA19FAB4340" } ] }, { "tgId": 10, "testType": "AFT", "direction": "ver", "msgLen": 0, "macLen": 32, "keyingOption": 1, "tests": [{ "tcId": 73, "message": "", "mac": "D78010B3", "key1": "D127F902CFF69A82", "key2": "785D99EF117E5B56", "key3": "36D4CB2C34A3AF30" }, { "tcId": 74, "message": "", "mac": "5313D9E8", "key1": "9D5DAC4D75E0A349", "key2": "6A55855C62D8C767", "key3": "CBD9FC7CCBDA8BE9" }, { "tcId": 75, "message": "", "mac": "07B1926F", "key1": "B711BA268A1F3663", "key2": "AA83B2195E85BFC6", "key3": "AA1CFBC128AAE0FD" } ] } ] }¶
The testGroups element at the top level in the test vector JSON object is an array of test groups. Test vectors are grouped into similar test cases to reduce the amount of data transmitted in the vector set. For instance, all test vectors that use the same key size would be grouped together. The Test Group JSON object contains meta data that applies to all test vectors within the group. The following table describes the secure GMAC JSON elements of the Test Group JSON object.¶
JSON Value | Description | JSON Type |
---|---|---|
tgId | Numeric identifier for the test group, unique across the entire vector set | integer |
testType | Test category type | string |
direction | The direction of the tests - encrypt or decrypt | string |
keyLen | Length of key in bits to use | integer |
ivLen | Length of IV in bits | integer |
ivGen | IV Generation (internal or external) | string |
ivGenMode | The mode an internal IV has been generated using | string |
aadLen | Length of AAD in bits | integer |
tagLen | Length of tag/MAC in bits to generate/verify | integer |
tests | Array of individual test vector JSON objects, which are defined in Section 13.3.2 | array |
| NOTE: PayloadLength is not supported for GMAC which defaults to 0, and is printed to the Test Group for clarity.
Each test group contains an array of one or more test cases. Each test case is a JSON object that represents a single test vector to be processed by the ACVP client. The following table describes the JSON elements for each secure MAC test vector.¶
JSON Value | Description | JSON Type |
---|---|---|
tcId | Numeric identifier for the test case, unique across the entire vector set | integer |
key | Encryption key to use | hex |
iv | Value of the IV | hex |
aad | Value of the AAD | hex |
tag | MAC/tag value, for validating on a decrypt operation | hex |
The following is an example JSON test vector object for AES-GMAC, truncated for brevity¶
{ "vsId": 0, "algorithm": "ACVP-AES-GMAC", "revision": "1.0", "testGroups": [{ "tgId": 1, "testType": "AFT", "direction": "encrypt", "keyLen": 128, "ivLen": 96, "ivGen": "external", ivGenMode": "8.2.2", "aadLen": 0, "tagLen": 32, "tests": [{ "tcId": 1, "key": "B1E9747F9E016F0376B1F379CD345B8A", "aad": "", "iv": "6294CEEDFCC3037A023100E8" }] }, { "tgId": 2, "testType": "AFT", "direction": "decrypt", "keyLen": 128, "ivLen": 96, "ivGen": "external", ivGenMode": "8.2.2", "aadLen": 0, "tagLen": 32, "tests": [{ "tcId": 2, "key": "CD345B8AE016F03765E9747F9B1F379A", "aad": "", "iv": "6207CEEDFA094CC3032310E8", "tag": "AB1254CE" }] } ] }¶
The testGroups element at the top level in the test vector JSON object is an array of test groups. Test vectors are grouped into similar test cases to reduce the amount of data transmitted in the vector set. For instance, all test vectors that use the same key size would be grouped together. The Test Group JSON object contains meta data that applies to all test vectors within the group. The following table describes the secure HMAC JSON elements of the Test Group JSON object.¶
JSON Value | Description | JSON type |
---|---|---|
tgId | Numeric identifier for the test group, unique across the entire vector set | integer |
testType | Test category type | string |
keyLen | Length of key in bits to use | integer |
msgLen | Length of message in bits | integer |
macLen | Length of MAC in bits to generate | integer |
tests | Array of individual test vector JSON objects, which are defined in Section 13.4.2 | array |
Each test group contains an array of one or more test cases. Each test case is a JSON object that represents a single test vector to be processed by the ACVP client. The following table describes the JSON elements for each secure MAC test vector.¶
JSON Value | Description | JSON type |
---|---|---|
tcId | Numeric identifier for the test case, unique across the entire vector set | integer |
key | The value of the key | hex |
msg | Value of the message | hex |
The following is an example JSON test vector object for HMAC, truncated for brevity.¶
{ "vsId": 1, "algorithm": "HMAC-SHA-1", "revision": "1.0", "testGroups": [{ "tgId": 1, "testType": "AFT", "keyLen": 56, "msgLen": 128, "macLen": 80, "tests": [{ "tcId": 1, "key": "0CBB3AA866E4D1", "msg": "28CD4091D45F28CD5709CC9B6F1E9D0D" }, { "tcId": 2, "key": "7FB3F60ACB9FB7", "msg": "9F224BF653F9BE143FFA0518D12761F7" }, { "tcId": 3, "key": "3834463234DA39", "msg": "F0FA740D261D5916B06F09AFBB04C94E" } ] }] }¶
After the ACVP client downloads and processes a vector set, it must send the response vectors back to the ACVP server. The following table describes the JSON object that represents a vector set response.¶
JSON Property | Description | JSON Type |
---|---|---|
acvVersion | The ACVP version used | string |
vsId | The vector set identifier | integer |
testGroups | The test group objects in the response, see Table 20 | array |
An example of this is the following¶
{ "acvVersion": "version", "vsId": 1, "testGroups": [ ... ] }¶
The 'testGroups' section is used to organize the ACVP client response in a similar manner to how it distributes vectors.¶
JSON Property | Description | JSON Type |
---|---|---|
tgId | The test group identifier | integer |
tests | The test case objects in the response, depending on the algorithm see Table 21, Table 22, Table 23 or Table 24 | array |
An example of this is the following¶
{ "tgId": 1, "tests": [ ... ] }¶
Each test group contains an array of one or more test cases. Each test case is a JSON object that represents a single test vector to be processed by the ACVP client. The following table describes the JSON elements for each CMAC-AES test vector.¶
JSON Value | Description | JSON type |
---|---|---|
tcId | Numeric identifier for the test case, unique across the entire vector set | integer |
mac | The value of the computed MAC output for 'gen' test type groups | hex |
testPassed | The result of CMAC verify for 'ver' test type groups | boolean |
The following is an example JSON test vector response object for CMAC-AES.¶
{ "vsId": 1, "testGroups": [{ "tgId": 4, "tests": [{ "tcId": 25, "mac": "7AA2D56A0AE76620" }, { "tcId": 26, "mac": "9E23524D3CD18C93" }, { "tcId": 27, "mac": "4D51872CBFAA102A" } ] }, { "tgId": 10, "tests": [{ "tcId": 73, "testPassed": true }, { "tcId": 74, "testPassed": true }, { "tcId": 75, "testPassed": true } ] } ] }¶
Each test group contains an array of one or more test cases. Each test case is a JSON object that represents a single test vector to be processed by the ACVP client. The following table describes the JSON elements for each CMAC-TDES test vector.¶
JSON Value | Description | JSON type |
---|---|---|
tcId | Numeric identifier for the test case, unique across the entire vector set | integer |
mac | The value of the computed MAC output for 'gen' test type groups | hex |
testPassed | The result of CMAC verify for 'ver' test type groups | boolean |
The following is an example JSON test vector response object for CMAC-TDES.¶
{ "vsId": 1, "algorithm": "CMAC-TDES", "revision": "1.0", "testGroups": [{ "tgId": 4, "tests": [{ "tcId": 25, "mac": "6FA27FDC" }, { "tcId": 26, "mac": "89CE2842" }, { "tcId": 27, "mac": "5E03D980" } ] }, { "tgId": 10, "tests": [{ "tcId": 73, "testPassed": true }, { "tcId": 74, "testPassed": true }, { "tcId": 75, "testPassed": true } ] } ] }¶
Each test group contains an array of one or more test cases. Each test case is a JSON object that represents a single test vector to be processed by the ACVP client. The following table describes the JSON elements for each GMAC test vector.¶
JSON Value | Description | JSON Type |
---|---|---|
tcId | Numeric identifier for the test case, unique across the entire vector set | integer |
tag | Value of the computed tag/MAC output, for 'encrypt' direction groups | hex |
testPassed | The result of decrypt verify, for 'decrypt' direction groups | boolean |
The following is an example JSON test vector response object for AES-GMAC.¶
{ "vsId": 1, "algorithm": "ACVP-AES-GMAC", "revision": "1.0", "testGroups": [{ "tgId": 1, "tests": [{ "tcId": 1, "tag": "6FA27FDC" }] }, { "tgId": 2, "tests": [{ "tcId": 2, "testPassed": true }] } ] }¶
Each test group contains an array of one or more test cases. Each test case is a JSON object that represents a single test vector to be processed by the ACVP client. The following table describes the JSON elements for each HMAC test vector.¶
JSON Value | Description | JSON type |
---|---|---|
tcId | Numeric identifier for the test case, unique across the entire vector set | integer |
mac | Value of the computed MAC output | hex |
The following is an example JSON test vector response object for HMAC.¶
{ "vsId": 1, "algorithm": "HMAC-SHA-1", "revision": "1.0", "testGroups": [{ "tgId": 1, "tests": [{ "tcId": 1, "mac": "0970D053D6829C251070" }, { "tcId": 2, "mac": "3A476E0407D7ADF14792" }, { "tcId": 3, "mac": "5B219B4C4862242DB175" } ] }] }¶
There are no additional security considerations outside of those outlined in the ACVP document.¶
This document does not require any action by IANA.¶