1 /**************************************************************************/
2 /* */
3 /* Copyright (c) Microsoft Corporation. All rights reserved. */
4 /* */
5 /* This software is licensed under the Microsoft Software License */
6 /* Terms for Microsoft Azure RTOS. Full text of the license can be */
7 /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */
8 /* and in the root directory of this software. */
9 /* */
10 /**************************************************************************/
11
12
13 /**************************************************************************/
14 /**************************************************************************/
15 /** */
16 /** NetX Secure Component */
17 /** */
18 /** Transport Layer Security (TLS) */
19 /** */
20 /**************************************************************************/
21 /**************************************************************************/
22
23 #define NX_SECURE_SOURCE_CODE
24
25
26 /* Include necessary system files. */
27
28 #include "nx_secure_tls.h"
29
30 /* Bring in externs for caller checking code. */
31
32 NX_SECURE_CALLER_CHECKING_EXTERNS
33
34 /**************************************************************************/
35 /* */
36 /* FUNCTION RELEASE */
37 /* */
38 /* _nxe_secure_tls_psk_add PORTABLE C */
39 /* 6.1 */
40 /* AUTHOR */
41 /* */
42 /* Timothy Stapko, Microsoft Corporation */
43 /* */
44 /* DESCRIPTION */
45 /* */
46 /* This function checks for errors in the TLS psk add call. */
47 /* */
48 /* INPUT */
49 /* */
50 /* tls_session Pointer to TLS Session */
51 /* pre_shared_key Pointer to PSK data */
52 /* psk_length Length of PSK data */
53 /* psk_identity PSK identity data */
54 /* identity_length Length of identity data */
55 /* hint PSK hint data */
56 /* hint_length Length of hint data */
57 /* */
58 /* OUTPUT */
59 /* */
60 /* status Completion status */
61 /* */
62 /* CALLS */
63 /* */
64 /* _nx_secure_tls_psk_add Actual TLS PSK add call. */
65 /* */
66 /* CALLED BY */
67 /* */
68 /* Application Code */
69 /* */
70 /* RELEASE HISTORY */
71 /* */
72 /* DATE NAME DESCRIPTION */
73 /* */
74 /* 05-19-2020 Timothy Stapko Initial Version 6.0 */
75 /* 09-30-2020 Timothy Stapko Modified comment(s), */
76 /* resulting in version 6.1 */
77 /* */
78 /**************************************************************************/
79 #if defined(NX_SECURE_ENABLE_PSK_CIPHERSUITES) || defined(NX_SECURE_ENABLE_ECJPAKE_CIPHERSUITE)
_nxe_secure_tls_psk_add(NX_SECURE_TLS_SESSION * tls_session,UCHAR * pre_shared_key,UINT psk_length,UCHAR * psk_identity,UINT identity_length,UCHAR * hint,UINT hint_length)80 UINT _nxe_secure_tls_psk_add(NX_SECURE_TLS_SESSION *tls_session, UCHAR *pre_shared_key, UINT psk_length,
81 UCHAR *psk_identity, UINT identity_length, UCHAR *hint, UINT hint_length)
82 {
83 UINT status;
84
85 if ((tls_session == NX_NULL) || (pre_shared_key == NX_NULL) || (psk_length == 0))
86 {
87 return(NX_PTR_ERROR);
88 }
89
90 /* Make sure the session is initialized. */
91 if(tls_session -> nx_secure_tls_id != NX_SECURE_TLS_ID)
92 {
93 return(NX_SECURE_TLS_SESSION_UNINITIALIZED);
94 }
95
96 /* Check for appropriate caller. */
97 NX_THREADS_ONLY_CALLER_CHECKING
98
99 status = _nx_secure_tls_psk_add(tls_session, pre_shared_key, psk_length, psk_identity, identity_length, hint, hint_length);
100
101 /* Return completion status. */
102 return(status);
103 }
104 #endif
105
106