Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 25 of 28) sorted by relevance

12

/mbedtls-development/library/
A Dx509_csr.c332 int mbedtls_x509_csr_info( char *buf, size_t size, const char *prefix, in mbedtls_x509_csr_info() argument
344 prefix, csr->version ); in mbedtls_x509_csr_info()
347 ret = mbedtls_snprintf( p, n, "\n%ssubject name : ", prefix ); in mbedtls_x509_csr_info()
352 ret = mbedtls_snprintf( p, n, "\n%ssigned using : ", prefix ); in mbedtls_x509_csr_info()
365 ret = mbedtls_snprintf( p, n, "\n%s%-" BC "s: %d bits\n", prefix, key_size_str, in mbedtls_x509_csr_info()
A Dx509_crl.c626 int mbedtls_x509_crl_info( char *buf, size_t size, const char *prefix, in mbedtls_x509_crl_info() argument
638 prefix, crl->version ); in mbedtls_x509_crl_info()
641 ret = mbedtls_snprintf( p, n, "\n%sissuer name : ", prefix ); in mbedtls_x509_crl_info()
647 "%04d-%02d-%02d %02d:%02d:%02d", prefix, in mbedtls_x509_crl_info()
654 "%04d-%02d-%02d %02d:%02d:%02d", prefix, in mbedtls_x509_crl_info()
663 prefix ); in mbedtls_x509_crl_info()
669 prefix ); in mbedtls_x509_crl_info()
685 ret = mbedtls_snprintf( p, n, "\n%ssigned using : ", prefix ); in mbedtls_x509_crl_info()
A Dx509_crt.c1836 const char *prefix ) in x509_info_subject_alt_name() argument
2071 int mbedtls_x509_crt_info( char *buf, size_t size, const char *prefix, in mbedtls_x509_crt_info() argument
2091 prefix, crt->version ); in mbedtls_x509_crt_info()
2094 prefix ); in mbedtls_x509_crt_info()
2100 ret = mbedtls_snprintf( p, n, "\n%sissuer name : ", prefix ); in mbedtls_x509_crt_info()
2105 ret = mbedtls_snprintf( p, n, "\n%ssubject name : ", prefix ); in mbedtls_x509_crt_info()
2111 "%04d-%02d-%02d %02d:%02d:%02d", prefix, in mbedtls_x509_crt_info()
2118 "%04d-%02d-%02d %02d:%02d:%02d", prefix, in mbedtls_x509_crt_info()
2124 ret = mbedtls_snprintf( p, n, "\n%ssigned using : ", prefix ); in mbedtls_x509_crt_info()
2166 prefix ) ) != 0 ) in mbedtls_x509_crt_info()
[all …]
/mbedtls-development/programs/test/cmake_subproject/
A DCMakeLists.txt3 # Test the target renaming support by adding a prefix to the targets built
15 # created using the specified prefix
/mbedtls-development/programs/ssl/
A Dssl_test_common_source.c290 int x509_crt_verify_info( char *buf, size_t size, const char *prefix, in x509_crt_verify_info() argument
294 return( mbedtls_x509_crt_verify_info( buf, size, prefix, flags ) ); in x509_crt_verify_info()
304 ret = mbedtls_snprintf( p, n, "%s%s\n", prefix, info ); \ in x509_crt_verify_info()
315 "(this should not happen)\n", prefix ); in x509_crt_verify_info()
A Dssl_context_info.c276 const size_t in_line, const char *prefix ) in print_hex() argument
281 if( prefix == NULL ) in print_hex()
283 prefix = ""; in print_hex()
290 printf( "\n%s", prefix ); in print_hex()
/mbedtls-development/tests/scripts/
A Drun-test-suites.pl75 my $prefix = $^O eq "MSWin32" ? '' : './';
97 my $command = "$prefix$suite";
A Dall.sh243 --arm-none-eabi-gcc-prefix=<string>
246 --arm-linux-gnueabi-gcc-prefix=<string>
420 --arm-none-eabi-gcc-prefix) shift; ARM_NONE_EABI_GCC_PREFIX="$1";;
421 --arm-linux-gnueabi-gcc-prefix) shift; ARM_LINUX_GNUEABI_GCC_PREFIX="$1";;
/mbedtls-development/tests/suites/
A Dtest_suite_debug.function151 char * prefix, char * result_str )
174 mbedtls_debug_print_crt( &ssl, 0, file, line, prefix, &crt);
187 char * prefix, char * result_str )
211 mbedtls_debug_print_mpi( &ssl, 0, file, line, prefix, &val);
A Dtest_suite_psa_crypto_metadata.function18 * classification macro without the PSA_ prefix. */
52 * the name of the classification macro without the PSA_ prefix. */
65 * flag is the name of the classification macro without the PSA_ prefix. */
A Dtest_suite_psa_its.function18 ( sizeof( PSA_ITS_STORAGE_PREFIX ) - 1 + /*prefix without terminating 0*/ \
A Dtest_suite_asn1write.data352 Store named data: skip prefix
A Dtest_suite_asn1parse.data604 Find named data: skip prefix
A Dtest_suite_x509parse.function529 void x509_verify_info( int flags, char * prefix, char * result_str )
536 res = mbedtls_x509_crt_verify_info( buf, sizeof( buf ), prefix, flags );
A Dtest_suite_asn1parse.function248 /* Test every prefix of the input, except the empty string.
/mbedtls-development/scripts/
A Decp_comb_table.py171 binname = tempfile.mktemp(prefix="mbedtls")
172 fd, srcname = tempfile.mkstemp(prefix="mbedtls", suffix=".c")
/mbedtls-development/tests/docker/bionic/
A DDockerfile90 …&& ./config --prefix=/usr/local/openssl-1.1.1a -Wl,--enable-new-dtags,-rpath,'${LIBRPATH}' no-shar…
110 …&& ./configure --prefix=/usr/local/gnutls-3.3.8 --exec_prefix=/usr/local/gnutls-3.3.8 --disable-sh…
131 && ./configure --prefix=/usr/local/gnutls-3.4.10 --exec_prefix=/usr/local/gnutls-3.4.10 \
154 && ./configure --prefix=/usr/local/gnutls-3.7.2 --exec_prefix=/usr/local/gnutls-3.7.2 \
/mbedtls-development/include/mbedtls/
A Dx509_crl.h161 int mbedtls_x509_crl_info( char *buf, size_t size, const char *prefix,
A Dx509_csr.h138 int mbedtls_x509_csr_info( char *buf, size_t size, const char *prefix,
A Dx509_crt.h641 int mbedtls_x509_crt_info( char *buf, size_t size, const char *prefix,
656 int mbedtls_x509_crt_verify_info( char *buf, size_t size, const char *prefix,
/mbedtls-development/scripts/mbedtls_dev/
A Dmacro_collector.py247 prefix = 'PSA_ALG_'
248 assert name.startswith(prefix)
250 suffix = name[len(prefix):]
255 return prefix + midfix + suffix
A Dc_build_helper.py44 c_fd, c_name = tempfile.mkstemp(prefix='tmp-{}-'.format(file_label),
/mbedtls-development/tests/src/drivers/
A Dtest_driver_key_management.c106 uint64_t prefix = PSA_CRYPTO_TEST_DRIVER_OPAQUE_PAD_PREFIX; in mbedtls_test_opaque_wrap_key() local
112 memcpy( wrapped_key_buffer, &prefix, opaque_key_base_size ); in mbedtls_test_opaque_wrap_key()
/mbedtls-development/docs/proposed/
A Dpsa-driver-interface.md71prefix"` (mandatory, string). This must be a valid prefix for a C identifier. All the types and fu…
240 … entry points are: *prefix*`_mac_sign_finish`, *prefix*`_mac_verify_finish`, *prefix*`_cipher_fnis…
258 To verify a hash with `psa_hash_verify()`, the core calls the driver's *prefix*`_hash_finish` entry…
324 …that create or format key data have the following prototypes for a driver with the prefix `"acme"`:
501 The `"init_random"` entry point has the following prototype for a driver with the prefix `"acme"`:
513 The `"add_entropy"` entry point has the following prototype for a driver with the prefix `"acme"`:
557 The `"get_random"` entry point has the following prototype for a driver with the prefix `"acme"`:
695 These functions have the following prototypes for a driver with the prefix `"acme"`:
733 The key creation entry points have the following prototypes for a driver with the prefix `"acme"`:
755 The key export entry points have the following prototypes for a driver with the prefix `"acme"`:
[all …]
/mbedtls-development/docs/architecture/testing/
A Dinvasive-testing.md69 …ok for test code; such functions should have a name that starts with the prefix `mbedtls_test_hook…

Completed in 59 milliseconds

12