Mistake on this page?
Report an issue in GitHub or email us
compliance_crypto/test_c021/test_data.h
Go to the documentation of this file.
1 /** @file
2  * Copyright (c) 2019, Arm Limited or its affiliates. All rights reserved.
3  * SPDX-License-Identifier : Apache-2.0
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16 **/
17 
18 #include "val_crypto.h"
19 
20 typedef struct {
21  char test_desc[75];
22  psa_key_handle_t key_handle;
23  psa_key_type_t key_type;
24  uint8_t key_data[32];
25  uint32_t key_length;
26  psa_key_usage_t usage;
27  psa_algorithm_t key_alg;
28  uint8_t salt[16];
29  size_t salt_length;
30  uint8_t label[16];
31  size_t label_length;
32  size_t capacity;
33  size_t size;
34  psa_status_t expected_status;
35 } test_data;
36 
37 static test_data check1[] = {
38 #ifdef ARCH_TEST_HKDF
39 #ifdef ARCH_TEST_CIPER_MODE_CTR
40 #ifdef ARCH_TEST_SHA256
41 {"Test psa_generator_abort\n", 1, PSA_KEY_TYPE_DERIVE,
42 {0x49, 0x8E, 0xC7, 0x7D, 0x01, 0x95, 0x0D, 0x94, 0x2C, 0x16, 0xA5, 0x3E, 0x99,
43  0x5F, 0xC9},
44  AES_16B_KEY_SIZE, PSA_KEY_USAGE_DERIVE, PSA_ALG_HKDF(PSA_ALG_SHA_256),
45  {0}, 0, {0}, 0, 32,
46  16, PSA_SUCCESS
47 },
48 #endif
49 #endif
50 #endif
51 };
Copyright (c) 2018-2019, Arm Limited or its affiliates.
Important Information for this Arm website

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies. If you are not happy with the use of these cookies, please review our Cookie Policy to learn how they can be disabled. By disabling cookies, some features of the site will not work.