mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
89 lines
2.4 KiB
C
89 lines
2.4 KiB
C
/*
|
|
* Copyright (C) 2018 Inria
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup examples
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief PSK and RPK keys for the dtls-sock example.
|
|
*
|
|
* @author Raul Fuentes <raul.fuentes-samaniego@inria.fr>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#ifndef TINYDTLS_KEYS_H
|
|
#define TINYDTLS_KEYS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*
|
|
* Default keys examples for tinyDTLS (for RIOT, Linux and Contiki)
|
|
*/
|
|
#ifdef CONFIG_DTLS_PSK
|
|
#define PSK_WRONG_IDENTITY "Wrong_identity"
|
|
#define PSK_WRONG_KEY "wrong_secret"
|
|
#define PSK_DEFAULT_IDENTITY "Client_identity"
|
|
#define PSK_DEFAULT_KEY "secretPSK"
|
|
#define PSK_DEFAULT_HINT "hint"
|
|
|
|
#endif /* CONFIG_DTLS_PSK */
|
|
|
|
#ifdef CONFIG_DTLS_ECC
|
|
static const unsigned char ecdsa_priv_key0[] = {
|
|
0x41, 0xC1, 0xCB, 0x6B, 0x51, 0x24, 0x7A, 0x14,
|
|
0x43, 0x21, 0x43, 0x5B, 0x7A, 0x80, 0xE7, 0x14,
|
|
0x89, 0x6A, 0x33, 0xBB, 0xAD, 0x72, 0x94, 0xCA,
|
|
0x40, 0x14, 0x55, 0xA1, 0x94, 0xA9, 0x49, 0xFA
|
|
};
|
|
|
|
static const unsigned char ecdsa_pub_key0_x[] = {
|
|
0x36, 0xDF, 0xE2, 0xC6, 0xF9, 0xF2, 0xED, 0x29,
|
|
0xDA, 0x0A, 0x9A, 0x8F, 0x62, 0x68, 0x4E, 0x91,
|
|
0x63, 0x75, 0xBA, 0x10, 0x30, 0x0C, 0x28, 0xC5,
|
|
0xE4, 0x7C, 0xFB, 0xF2, 0x5F, 0xA5, 0x8F, 0x52
|
|
};
|
|
|
|
static const unsigned char ecdsa_pub_key0_y[] = {
|
|
0x71, 0xA0, 0xD4, 0xFC, 0xDE, 0x1A, 0xB8, 0x78,
|
|
0x5A, 0x3C, 0x78, 0x69, 0x35, 0xA7, 0xCF, 0xAB,
|
|
0xE9, 0x3F, 0x98, 0x72, 0x09, 0xDA, 0xED, 0x0B,
|
|
0x4F, 0xAB, 0xC3, 0x6F, 0xC7, 0x72, 0xF8, 0x29
|
|
};
|
|
|
|
static const unsigned char ecdsa_priv_key1[] = {
|
|
0x99, 0x1b, 0x1c, 0xf1, 0x52, 0xa3, 0xf5, 0xac,
|
|
0xce, 0x58, 0x00, 0x45, 0xdc, 0xa7, 0x45, 0x45,
|
|
0x9e, 0xc6, 0xd8, 0x68, 0x21, 0xd4, 0x82, 0xb7,
|
|
0x17, 0x84, 0x0a, 0xdc, 0x1d, 0xf1, 0x09, 0x57
|
|
};
|
|
|
|
static const unsigned char ecdsa_pub_key1_x[] = {
|
|
0xb7, 0x4e, 0xa0, 0x62, 0x96, 0xc5, 0xb9, 0x09,
|
|
0xad, 0x36, 0x10, 0xab, 0xb1, 0xd8, 0x54, 0x69,
|
|
0xef, 0x2b, 0x15, 0x5a, 0xb5, 0x28, 0x21, 0x21,
|
|
0x9f, 0xa3, 0x9e, 0x6a, 0x02, 0xce, 0xb8, 0xb9
|
|
};
|
|
|
|
static const unsigned char ecdsa_pub_key1_y[] = {
|
|
0xcc, 0x0e, 0x88, 0x88, 0x91, 0x80, 0x7a, 0xdd,
|
|
0xf7, 0x4e, 0x2e, 0xe6, 0x6e, 0xd4, 0x22, 0xde,
|
|
0xbc, 0x68, 0xcd, 0x8f, 0xd9, 0x5a, 0xa0, 0xcd,
|
|
0x5f, 0x4a, 0x1a, 0xb7, 0x2f, 0x95, 0xfc, 0x76
|
|
};
|
|
|
|
#endif /* CONFIG_DTLS_ECC */
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* TINYDTLS_KEYS_H */
|