mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-01-04 21:56:21 +01:00
- First tests for x509_write_cert_req() compat with OpenSSL output
This commit is contained in:
parent
3cac5e012b
commit
6d6205091b
12 changed files with 237 additions and 2 deletions
|
|
@ -19,8 +19,8 @@ APPS = test_suite_aes test_suite_arc4 \
|
|||
test_suite_md test_suite_mdx \
|
||||
test_suite_mpi test_suite_pkcs1_v21 \
|
||||
test_suite_rsa test_suite_shax \
|
||||
test_suite_x509parse test_suite_xtea \
|
||||
test_suite_version
|
||||
test_suite_x509parse test_suite_x509write \
|
||||
test_suite_xtea test_suite_version
|
||||
|
||||
.SILENT:
|
||||
|
||||
|
|
@ -126,6 +126,10 @@ test_suite_x509parse: test_suite_x509parse.c ../library/libpolarssl.a
|
|||
echo " CC $@.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
||||
|
||||
test_suite_x509write: test_suite_x509write.c ../library/libpolarssl.a
|
||||
echo " CC $@.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
||||
|
||||
test_suite_xtea: test_suite_xtea.c ../library/libpolarssl.a
|
||||
echo " CC $@.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue