/mbedtls-latest/library/ |
D | x509_csr.c | 528 int mbedtls_x509_csr_info(char *buf, size_t size, const char *prefix, in mbedtls_x509_csr_info() argument 540 prefix, csr->version); in mbedtls_x509_csr_info() 543 ret = mbedtls_snprintf(p, n, "\n%ssubject name : ", prefix); in mbedtls_x509_csr_info() 548 ret = mbedtls_snprintf(p, n, "\n%ssigned using : ", prefix); in mbedtls_x509_csr_info() 560 ret = mbedtls_snprintf(p, n, "\n%s%-" BC "s: %d bits\n", prefix, key_size_str, in mbedtls_x509_csr_info() 569 ret = mbedtls_snprintf(p, n, "\n%ssubject alt name :", prefix); in mbedtls_x509_csr_info() 574 prefix)) != 0) { in mbedtls_x509_csr_info() 580 ret = mbedtls_snprintf(p, n, "\n%scert. type : ", prefix); in mbedtls_x509_csr_info() 589 ret = mbedtls_snprintf(p, n, "\n%skey usage : ", prefix); in mbedtls_x509_csr_info()
|
D | x509_crl.c | 594 int mbedtls_x509_crl_info(char *buf, size_t size, const char *prefix, in mbedtls_x509_crl_info() argument 606 prefix, crl->version); in mbedtls_x509_crl_info() 609 ret = mbedtls_snprintf(p, n, "\n%sissuer name : ", prefix); in mbedtls_x509_crl_info() 615 "%04d-%02d-%02d %02d:%02d:%02d", prefix, in mbedtls_x509_crl_info() 622 "%04d-%02d-%02d %02d:%02d:%02d", prefix, in mbedtls_x509_crl_info() 631 prefix); in mbedtls_x509_crl_info() 636 prefix); in mbedtls_x509_crl_info() 652 ret = mbedtls_snprintf(p, n, "\n%ssigned using : ", prefix); in mbedtls_x509_crl_info()
|
D | x509.c | 1514 const char *prefix) in mbedtls_x509_info_subject_alt_name() argument 1529 ret = mbedtls_snprintf(p, n, "\n%s <unsupported>", prefix); in mbedtls_x509_info_subject_alt_name() 1532 ret = mbedtls_snprintf(p, n, "\n%s <malformed>", prefix); in mbedtls_x509_info_subject_alt_name() 1547 ret = mbedtls_snprintf(p, n, "\n%s otherName :", prefix); in mbedtls_x509_info_subject_alt_name() 1552 ret = mbedtls_snprintf(p, n, "\n%s hardware module name :", prefix); in mbedtls_x509_info_subject_alt_name() 1555 mbedtls_snprintf(p, n, "\n%s hardware type : ", prefix); in mbedtls_x509_info_subject_alt_name() 1564 mbedtls_snprintf(p, n, "\n%s hardware serial number : ", prefix); in mbedtls_x509_info_subject_alt_name() 1582 ret = mbedtls_snprintf(p, n, "\n%s uniformResourceIdentifier : ", prefix); in mbedtls_x509_info_subject_alt_name() 1608 prefix, in mbedtls_x509_info_subject_alt_name() 1630 prefix, "iPAddress"); in mbedtls_x509_info_subject_alt_name() [all …]
|
D | x509_crt.c | 1751 int mbedtls_x509_crt_info(char *buf, size_t size, const char *prefix, in mbedtls_x509_crt_info() argument 1770 prefix, crt->version); in mbedtls_x509_crt_info() 1773 prefix); in mbedtls_x509_crt_info() 1779 ret = mbedtls_snprintf(p, n, "\n%sissuer name : ", prefix); in mbedtls_x509_crt_info() 1784 ret = mbedtls_snprintf(p, n, "\n%ssubject name : ", prefix); in mbedtls_x509_crt_info() 1790 "%04d-%02d-%02d %02d:%02d:%02d", prefix, in mbedtls_x509_crt_info() 1797 "%04d-%02d-%02d %02d:%02d:%02d", prefix, in mbedtls_x509_crt_info() 1803 ret = mbedtls_snprintf(p, n, "\n%ssigned using : ", prefix); in mbedtls_x509_crt_info() 1816 ret = mbedtls_snprintf(p, n, "\n%s%-" BC "s: %d bits", prefix, key_size_str, in mbedtls_x509_crt_info() 1825 ret = mbedtls_snprintf(p, n, "\n%sbasic constraints : CA=%s", prefix, in mbedtls_x509_crt_info() [all …]
|
D | x509_internal.h | 77 const char *prefix);
|
/mbedtls-latest/programs/ssl/ |
D | ssl_test_common_source.c | 322 static int x509_crt_verify_info(char *buf, size_t size, const char *prefix, in x509_crt_verify_info() argument 326 return mbedtls_x509_crt_verify_info(buf, size, prefix, flags); in x509_crt_verify_info() 336 ret = mbedtls_snprintf(p, n, "%s%s\n", prefix, info); \ in x509_crt_verify_info() 346 "(this should not happen)\n", prefix); in x509_crt_verify_info()
|
D | ssl_context_info.c | 251 const size_t in_line, const char *prefix) in print_hex() argument 256 if (prefix == NULL) { in print_hex() 257 prefix = ""; in print_hex() 262 printf("\n%s", prefix); in print_hex()
|
/mbedtls-latest/tests/suites/ |
D | test_suite_debug.function | 167 char *prefix, char *result_str) 193 mbedtls_debug_print_crt(&ssl, 0, file, line, prefix, &crt); 207 char *prefix, char *result_str) 234 mbedtls_debug_print_mpi(&ssl, 0, file, line, prefix, &val);
|
/mbedtls-latest/tests/scripts/ |
D | depends.py | 89 def log_line(text, prefix='depends.py:', suffix='', color=None): argument 92 prefix = color[0] + prefix 94 sys.stderr.write(prefix + ' ' + text + suffix + '\n') 100 log_line(' '.join(cmd), prefix='+')
|
D | run-test-suites.pl | 65 my $prefix = $^O eq "MSWin32" ? '' : './'; 87 my $command = "$prefix$suite";
|
D | generate_tls13_compat_tests.py | 501 prefix = ' \\\n' + (' '*9) 502 cmd = prefix.join(cmd) 530 prefix = ' \\\n' + (' '*9) 531 cmd = prefix.join(cmd)
|
D | all.sh | 281 --arm-none-eabi-gcc-prefix=<string> 284 --arm-linux-gnueabi-gcc-prefix=<string> 464 --arm-none-eabi-gcc-prefix) shift; ARM_NONE_EABI_GCC_PREFIX="$1";; 465 --arm-linux-gnueabi-gcc-prefix) shift; ARM_LINUX_GNUEABI_GCC_PREFIX="$1";;
|
/mbedtls-latest/tests/docker/bionic/ |
D | Dockerfile | 86 …&& ./config --prefix=/usr/local/openssl-1.1.1a -Wl,--enable-new-dtags,-rpath,'${LIBRPATH}' no-shar… 106 …&& ./configure --prefix=/usr/local/gnutls-3.3.8 --exec_prefix=/usr/local/gnutls-3.3.8 --disable-sh… 127 && ./configure --prefix=/usr/local/gnutls-3.4.10 --exec_prefix=/usr/local/gnutls-3.4.10 \ 150 && ./configure --prefix=/usr/local/gnutls-3.7.2 --exec_prefix=/usr/local/gnutls-3.7.2 \
|
/mbedtls-latest/programs/test/cmake_subproject/ |
D | CMakeLists.txt | 3 # Test the target renaming support by adding a prefix to the targets built 15 # created using the specified prefix
|
/mbedtls-latest/pkgconfig/ |
D | CMakeLists.txt | 3 join_paths(PKGCONFIG_INCLUDEDIR "\${prefix}" "${CMAKE_INSTALL_INCLUDEDIR}") 4 join_paths(PKGCONFIG_LIBDIR "\${prefix}" "${CMAKE_INSTALL_LIBDIR}")
|
D | mbedcrypto.pc.in | 1 prefix=@CMAKE_INSTALL_PREFIX@
|
D | mbedx509.pc.in | 1 prefix=@CMAKE_INSTALL_PREFIX@
|
D | mbedtls.pc.in | 1 prefix=@CMAKE_INSTALL_PREFIX@
|
/mbedtls-latest/scripts/ |
D | ecp_comb_table.py | 159 binname = tempfile.mktemp(prefix="mbedtls") 160 fd, srcname = tempfile.mkstemp(prefix="mbedtls", suffix=".c")
|
/mbedtls-latest/scripts/data_files/driver_templates/ |
D | psa_crypto_driver_wrappers_no_static.c.jinja | 29 /* Headers for {{driver.prefix}} {{driver.type}} driver */ 48 #define {{(driver.prefix + "_" + driver.type + "_driver_id").upper()}} ({{ loop.index + 1 }}) 57 {{driver.prefix}}_{{driver.type}}_{{entry_point}}
|
/mbedtls-latest/include/mbedtls/ |
D | x509_crt.h | 581 int mbedtls_x509_crt_info(char *buf, size_t size, const char *prefix, 596 int mbedtls_x509_crt_verify_info(char *buf, size_t size, const char *prefix,
|
D | x509_crl.h | 159 int mbedtls_x509_crl_info(char *buf, size_t size, const char *prefix,
|
D | x509_csr.h | 201 int mbedtls_x509_csr_info(char *buf, size_t size, const char *prefix,
|
/mbedtls-latest/docs/proposed/ |
D | psa-driver-interface.md | 77 …prefix"` (mandatory, string). This must be a valid, non-empty prefix for a C identifier. All the t… 98 …prefix followed by an underscore (`_`) followed by the function name. If this property is omitted,… 129 …n) using any hash algorithm and any curve that the core supports. If the prefix of this driver is … 137 …ith either hash being possible in combination with either curve). If the prefix of this driver is … 194 …XX_operation_t`) is replaced by a driver-specific operation state type (*prefix*`_XXX_operation_t`… 246 …entry points are: *prefix*`_mac_sign_finish`, *prefix*`_mac_verify_finish`, *prefix*`_cipher_finis… 264 To verify a hash with `psa_hash_verify()`, the core calls the driver's *prefix*`_hash_finish` entry… 266 For example, a driver with the prefix `"acme"` that implements the `"hash_multipart"` entry point f… 337 …ng subsection, this specification takes the example of a driver with the prefix `"acme"` that impl… 517 A transparent driver with the prefix `"acme"` that implements cooked key derivation must provide th… [all …]
|
/mbedtls-latest/docs/ |
D | psa-driver-example-and-guide.md | 52 **1. Choose a driver prefix and a macro name that indicates whether the driver is enabled** \ 53 A driver prefix is simply a word (often the name of the driver) that all functions/macros associate… 80 If one has not been provided then write one. Its name should begin with the driver prefix, followed… 151 The driver prefix for p256-m is `P256`/`p256`.
|