Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 112) sorted by relevance

12345

/net-tools-3.4.0/libcoap/
DMakefile.am22 examples/coap_list.h \
23 tests/test_options.h \
24 tests/test_pdu.h \
25 tests/test_error_response.h \
26 tests/test_sendqueue.h \
27 tests/test_uri.h \
28 tests/test_wellknown.h
74 include/coap/address.h \
75 include/coap/async.h \
76 include/coap/bits.h \
[all …]
DTODO14 -> Remove the #include "coap_config.h" directive from the public header files.
16 -> Use coap.h as the only header to include from the public view.
39 include/coap/coap_io.h
40 include/coap/option.h
41 include/coap/net.h
42 include/coap/resource.h
43 include/coap/str.h
44 include/coap/subscribe.h
45 include/coap/uri.h
47 include/coap/block.h
[all …]
Dconfigure.ac21 # an autogenerated template. We need later a second one (include/libcoap.h)
23 AC_CONFIG_HEADERS([coap_config.h])
208 AC_CHECK_HEADERS([CUnit/CUnit.h],
270 AC_CHECK_HEADERS([assert.h arpa/inet.h limits.h netdb.h netinet/in.h \
271 stdlib.h string.h strings.h sys/socket.h sys/time.h \
272 time.h unistd.h sys/unistd.h syslog.h])
350 include/coap/coap.h
/net-tools-3.4.0/libcoap/include/coap/
Dcoap.h.in2 * coap.h -- main header file for CoAP stack of libcoap
14 #include "libcoap.h"
35 #include "address.h"
36 #include "async.h"
37 #include "bits.h"
38 #include "block.h"
39 #include "coap_io.h"
40 #include "coap_time.h"
41 #include "debug.h"
42 #include "encode.h"
[all …]
/net-tools-3.4.0/tinydtls-0.8.2/
DMakefile.in51 HEADERS:=dtls.h hmac.h debug.h dtls_config.h uthash.h numeric.h crypto.h global.h ccm.h \
52 netq.h t_list.h alert.h utlist.h prng.h peer.h state.h dtls_time.h session.h \
53 tinydtls.h
59 FILES:=Makefile.in configure configure.in dtls_config.h.in tinydtls.h.in \
132 autom4te.cache/ config.h config.log config.status configure \
136 \*.d \*.hex \*.elf \*.map obj_\* tinydtls.h dtls_config.h \
Dconfigure.in29 dnl AC_CONFIG_HEADERS([config.h])
85 …S([assert.h arpa/inet.h fcntl.h inttypes.h netdb.h netinet/in.h stddef.h stdint.h stdlib.h string.
87 AC_CHECK_HEADERS([sys/time.h time.h])
88 AC_CHECK_HEADERS([sys/types.h sys/stat.h])
97 [#include <netinet/in.h>])
104 AC_CONFIG_HEADERS([dtls_config.h tinydtls.h])
106 # Adds Contiki-specific definitions to the end of dtls_config.h
109 #include "platform-specific/platform.h"
Ddtls_config.h.in1 /* dtls_config.h.in. Generated from configure.in by autoheader. */
12 /* Define to 1 if you have the <arpa/inet.h> header file. */
15 /* Define to 1 if you have the <assert.h> header file. */
18 /* Define to 1 if you have the <fcntl.h> header file. */
24 /* Define to 1 if you have the <inttypes.h> header file. */
31 /* Define to 1 if you have the <memory.h> header file. */
37 /* Define to 1 if you have the <netdb.h> header file. */
40 /* Define to 1 if you have the <netinet/in.h> header file. */
52 /* Define to 1 if you have the <stddef.h> header file. */
55 /* Define to 1 if you have the <stdint.h> header file. */
[all …]
Dconfigure1617 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1618 /* end confdefs.h. */
1634 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1635 /* end confdefs.h. */
1696 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1697 /* end confdefs.h. */
1709 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1710 /* end confdefs.h. */
1749 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1750 /* end confdefs.h. */
[all …]
Ddtls.h239 dtls_handler_t *h; /**< callback handlers */ member
262 static inline void dtls_set_handler(dtls_context_t *ctx, dtls_handler_t *h) { in dtls_set_handler() argument
263 ctx->h = h; in dtls_set_handler()
/net-tools-3.4.0/libcoap/src/
Dhashkey.c15 coap_hash_impl(const unsigned char *s, unsigned int len, coap_key_t h) { in coap_hash_impl() argument
22 h[j] = ((h[j] << 7) | (h[j-1] >> 1)) + h[j]; in coap_hash_impl()
26 h[0] = (h[0] << 7) + h[0] + *s++; in coap_hash_impl()
/net-tools-3.4.0/tinydtls-0.8.2/sha2/
Dsha2.c385 #define ROUND256_0_TO_15(a,b,c,d,e,f,g,h) \ argument
387 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
390 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
396 #define ROUND256_0_TO_15(a,b,c,d,e,f,g,h) \ argument
397 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
400 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
405 #define ROUND256(a,b,c,d,e,f,g,h) \ argument
410 T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
413 (h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
417 sha2_word32 a, b, c, d, e, f, g, h, s0, s1; in SHA256_Transform() local
[all …]
/net-tools-3.4.0/mbedtls-2.4.0/tests/scripts/
Dlist-symbols.sh15 cp include/mbedtls/config.h include/mbedtls/config.h.bak
18 mv include/mbedtls/config.h.bak include/mbedtls/config.h
/net-tools-3.4.0/mbedtls-2.4.0/configs/
DREADME.txt7 These files are complete replacements for the default config.h. To use one of
10 1. Replace the default file include/mbedtls/config.h with the chosen one.
12 #include "mbedtls/check_config.h" then.)
17 CFLAGS="-I$PWD/configs -DMBEDTLS_CONFIG_FILE='<foo.h>'" make
22 CFLAGS="-I$PWD/configs -DMBEDTLS_CONFIG_FILE='<foo.h>'" cmake .
/net-tools-3.4.0/libcoap/examples/contiki/
DMakefile.common22 symbols.h: $(CONTIKI)/tools/empty-symbols.h
28 symbols.o: symbols.c symbols.h
31 rm -f core server ${OBJS} symbols.c symbols.h
/net-tools-3.4.0/mbedtls-2.4.0/scripts/
Dfootprint.sh108 doit default include/mbedtls/config.h
109 doit yotta yotta/module/mbedtls/config.h
110 doit thread configs/config-thread.h
111 doit suite-b configs/config-suite-b.h
112 doit psk configs/config-ccm-psk-tls1_2.h
Dbump_version.sh111 cat include/mbedtls/version.h | \
119 mv tmp include/mbedtls/version.h
126 for i in doxygen/mbedtls.doxyfile doxygen/input/doc_mainpage.h;
/net-tools-3.4.0/mbedtls-2.4.0/library/
Decjpake.c185 mbedtls_mpi *h ) in ecjpake_hash() argument
217 MBEDTLS_MPI_CHK( mbedtls_mpi_read_binary( h, hash, in ecjpake_hash()
219 MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( h, h, &grp->N ) ); in ecjpake_hash()
239 mbedtls_mpi r, h; in ecjpake_zkp_read() local
245 mbedtls_mpi_init( &h ); in ecjpake_zkp_read()
278 MBEDTLS_MPI_CHK( ecjpake_hash( md_info, grp, pf, G, &V, X, id, &h ) ); in ecjpake_zkp_read()
280 &VV, &h, X, &r, G ) ); in ecjpake_zkp_read()
292 mbedtls_mpi_free( &h ); in ecjpake_zkp_read()
315 mbedtls_mpi h; /* later recycled to hold r */ in ecjpake_zkp_write() local
323 mbedtls_mpi_init( &h ); in ecjpake_zkp_write()
[all …]
Dgcm.c106 unsigned char h[16]; in gcm_gen_table() local
109 memset( h, 0, 16 ); in gcm_gen_table()
110 if( ( ret = mbedtls_cipher_update( &ctx->cipher_ctx, h, 16, h, &olen ) ) != 0 ) in gcm_gen_table()
114 GET_UINT32_BE( hi, h, 0 ); in gcm_gen_table()
115 GET_UINT32_BE( lo, h, 4 ); in gcm_gen_table()
118 GET_UINT32_BE( hi, h, 8 ); in gcm_gen_table()
119 GET_UINT32_BE( lo, h, 12 ); in gcm_gen_table()
219 unsigned char h[16]; in gcm_mult() local
221 PUT_UINT32_BE( ctx->HH[8] >> 32, h, 0 ); in gcm_mult()
222 PUT_UINT32_BE( ctx->HH[8], h, 4 ); in gcm_mult()
[all …]
/net-tools-3.4.0/mbedtls-2.4.0/yotta/
Dcreate-module.sh24 cp $TREE/include/mbedtls/*.h $TMP/mbedtls
29 cp data/target_config.h $TMP/mbedtls
31 data/adjust-config.sh $TREE/scripts/config.pl $TMP/mbedtls/config.h
/net-tools-3.4.0/mbedtls-2.4.0/tests/suites/
Dhelpers.function5 #include <stdlib.h>
8 #include "mbedtls/platform.h"
10 #include <stdio.h>
23 #include "mbedtls/memory_buffer_alloc.h"
27 #include <basetsd.h>
32 #include <stdint.h>
35 #include <string.h>
38 #include <unistd.h>
186 unsigned char l, h;
190 h = *ibuf / 16;
[all …]
Dtest_suite_mdx.function2 #include "mbedtls/md2.h"
3 #include "mbedtls/md4.h"
4 #include "mbedtls/md5.h"
5 #include "mbedtls/ripemd160.h"
Dtest_suite_pkwrite.function2 #include "mbedtls/pk.h"
3 #include "mbedtls/pem.h"
4 #include "mbedtls/oid.h"
/net-tools-3.4.0/mbedtls-2.4.0/scripts/data_files/
Derror.fmt23 #include "mbedtls/config.h"
29 #include "mbedtls/error.h"
30 #include <string.h>
34 #include "mbedtls/platform.h"
42 #include <stdio.h>
Dversion_features.fmt23 #include "mbedtls/config.h"
30 #include "mbedtls/version.h"
32 #include <string.h>
/net-tools-3.4.0/tinydtls-0.8.2/ecc/
DMakefile.in39 ECC_HEADERS:= ecc.h test_helper.h
59 ecc_test.o: ecc.c ecc.h

12345