1 /* 2 Copyright (c) 2021 Fraunhofer AISEC. See the COPYRIGHT 3 file at the top-level directory of this distribution. 4 5 Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or 6 http://www.apache.org/licenses/LICENSE-2.0> or the MIT license 7 <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your 8 option. This file may not be copied, modified, or distributed 9 except according to those terms. 10 */ 11 #ifndef CREDENTIALS_SELECT_H_ 12 #define CREDENTIALS_SELECT_H_ 13 14 /*Test vector description*/ 15 /* 16 17 Macro | mode | RPK/Cert | suite | Ref [1] 18 INITIATOR_TEST_1 | INITIATOR_SK_RESPONDER_SK | RPK x5t | 0 | 1-290 19 RESPONDER_TEST_1 | INITIATOR_SK_RESPONDER_SK | RPK x5t | 0 | 1-290 20 INITIATOR_TEST_2 | INITIATOR_SDHK_RESPONDER_SDHK | RPK kid | 0 | 292-540 21 RESPONDER_TEST_2 | INITIATOR_SDHK_RESPONDER_SDHK | RPK kid | 0 | 292-540 22 INITIATOR_TEST_3 | INITIATOR_SK_RESPONDER_SK | x5chain | 0 | non 23 RESPONDER_TEST_3 | INITIATOR_SK_RESPONDER_SK | x5chain | 0 | non 24 INITIATOR_TEST_4 | INITIATOR_SDHK_RESPONDER_SDHK | x5chain | 0 | non 25 RESPONDER_TEST_5 | INITIATOR_SDHK_RESPONDER_SDHK | x5chain | 0 | non 26 27 28 [1]: https://github.com/EricssonResearch/EDHOC/blob/master/Test%20Vectors/vectors.txt 29 30 */ 31 32 //#define INITIATOR_TEST_1 33 #define RESPONDER_TEST_1 34 35 //#define INITIATOR_TEST_2 36 //#define RESPONDER_TEST_2 37 38 //#define INITIATOR_TEST_3 39 //#define RESPONDER_TEST_3 40 41 //#define INITIATOR_TEST_4 42 //#define RESPONDER_TEST_4 43 44 #endif /* CREDENTIALS_SELECT_H_ */ 45