├── .gitignore ├── README.md ├── doc ├── SC4-HSM user manual.md ├── sc4-hsm1.jpg └── sc4-hsm2.jpg ├── src ├── Makefile ├── ldscripts │ ├── mem.ld │ └── sections.ld ├── lib │ ├── Adafruit_GFX.cpp │ ├── Adafruit_GFX.h │ ├── Adafruit_SSD1306.cpp │ ├── Adafruit_SSD1306.h │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── WString.h │ ├── gfxfont.h │ ├── glcdfont.c │ ├── init.c │ ├── init.h │ ├── pgmspace.h │ ├── pinmap.h │ ├── startup_stm32f415xx.s │ ├── stm32f4xx_hal_conf.h │ ├── stm32f4xx_hal_msp.c │ ├── stm32f4xx_hal_uart.h │ ├── stm32f4xx_hal_usart.h │ ├── stm32f4xx_it.c │ ├── stm32f4xx_it.h │ ├── usb_device.h │ ├── usbd_cdc_if.c │ ├── usbd_cdc_if.h │ ├── usbd_conf.c │ ├── usbd_conf.h │ ├── usbd_desc.c │ └── usbd_desc.h ├── mbedtls │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── DartConfiguration.tcl │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── apache-2.0.txt │ ├── configs │ │ ├── README.txt │ │ ├── config-ccm-psk-tls1_2.h │ │ ├── config-mini-tls1_1.h │ │ ├── config-picocoin.h │ │ ├── config-suite-b.h │ │ └── config-thread.h │ ├── doxygen │ │ ├── input │ │ │ ├── doc_encdec.h │ │ │ ├── doc_hashing.h │ │ │ ├── doc_mainpage.h │ │ │ ├── doc_rng.h │ │ │ ├── doc_ssltls.h │ │ │ ├── doc_tcpip.h │ │ │ └── doc_x509.h │ │ └── mbedtls.doxyfile │ ├── include │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── mbedtls │ │ │ ├── aes.h │ │ │ ├── aesni.h │ │ │ ├── arc4.h │ │ │ ├── asn1.h │ │ │ ├── asn1write.h │ │ │ ├── base64.h │ │ │ ├── bignum.h │ │ │ ├── blowfish.h │ │ │ ├── bn_mul.h │ │ │ ├── camellia.h │ │ │ ├── ccm.h │ │ │ ├── certs.h │ │ │ ├── check_config.h │ │ │ ├── cipher.h │ │ │ ├── cipher_internal.h │ │ │ ├── compat-1.3.h │ │ │ ├── config.h │ │ │ ├── ctr_drbg.h │ │ │ ├── debug.h │ │ │ ├── des.h │ │ │ ├── dhm.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecjpake.h │ │ │ ├── ecp.h │ │ │ ├── entropy.h │ │ │ ├── entropy_poll.h │ │ │ ├── error.h │ │ │ ├── gcm.h │ │ │ ├── havege.h │ │ │ ├── hmac_drbg.h │ │ │ ├── md.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── md_internal.h │ │ │ ├── memory_buffer_alloc.h │ │ │ ├── net.h │ │ │ ├── oid.h │ │ │ ├── padlock.h │ │ │ ├── pem.h │ │ │ ├── pk.h │ │ │ ├── pk_internal.h │ │ │ ├── pkcs11.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs5.h │ │ │ ├── platform.h │ │ │ ├── ripemd160.h │ │ │ ├── rsa.h │ │ │ ├── sha1.h │ │ │ ├── sha256.h │ │ │ ├── sha512.h │ │ │ ├── ssl.h │ │ │ ├── ssl_cache.h │ │ │ ├── ssl_ciphersuites.h │ │ │ ├── ssl_cookie.h │ │ │ ├── ssl_internal.h │ │ │ ├── ssl_ticket.h │ │ │ ├── threading.h │ │ │ ├── timing.h │ │ │ ├── version.h │ │ │ ├── x509.h │ │ │ ├── x509_crl.h │ │ │ ├── x509_crt.h │ │ │ ├── x509_csr.h │ │ │ └── xtea.h │ ├── library │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── aes.c │ │ ├── aesni.c │ │ ├── arc4.c │ │ ├── asn1parse.c │ │ ├── asn1write.c │ │ ├── base64.c │ │ ├── bignum.c │ │ ├── blowfish.c │ │ ├── camellia.c │ │ ├── ccm.c │ │ ├── certs.c │ │ ├── cipher.c │ │ ├── cipher_wrap.c │ │ ├── ctr_drbg.c │ │ ├── debug.c │ │ ├── des.c │ │ ├── dhm.c │ │ ├── ecdh.c │ │ ├── ecdsa.c │ │ ├── ecjpake.c │ │ ├── ecp.c │ │ ├── ecp_curves.c │ │ ├── entropy.c │ │ ├── entropy_poll.c │ │ ├── error.c │ │ ├── gcm.c │ │ ├── havege.c │ │ ├── hmac_drbg.c │ │ ├── md.c │ │ ├── md2.c │ │ ├── md4.c │ │ ├── md5.c │ │ ├── md_wrap.c │ │ ├── memory_buffer_alloc.c │ │ ├── oid.c │ │ ├── padlock.c │ │ ├── pem.c │ │ ├── pk.c │ │ ├── pk_wrap.c │ │ ├── pkcs11.c │ │ ├── pkcs12.c │ │ ├── pkcs5.c │ │ ├── pkparse.c │ │ ├── pkwrite.c │ │ ├── platform.c │ │ ├── ripemd160.c │ │ ├── rsa.c │ │ ├── sha1.c │ │ ├── sha256.c │ │ ├── sha512.c │ │ ├── ssl_cache.c │ │ ├── ssl_ciphersuites.c │ │ ├── ssl_cli.c │ │ ├── ssl_cookie.c │ │ ├── ssl_srv.c │ │ ├── ssl_ticket.c │ │ ├── ssl_tls.c │ │ ├── threading.c │ │ ├── timing.c │ │ ├── version.c │ │ ├── version_features.c │ │ ├── x509.c │ │ ├── x509_create.c │ │ ├── x509_crl.c │ │ ├── x509_crt.c │ │ ├── x509_csr.c │ │ ├── x509write_crt.c │ │ ├── x509write_csr.c │ │ └── xtea.c │ ├── programs │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── aes │ │ │ ├── CMakeLists.txt │ │ │ ├── aescrypt2.c │ │ │ └── crypt_and_hash.c │ │ ├── hash │ │ │ ├── CMakeLists.txt │ │ │ ├── generic_sum.c │ │ │ └── hello.c │ │ ├── pkey │ │ │ ├── CMakeLists.txt │ │ │ ├── dh_client.c │ │ │ ├── dh_genprime.c │ │ │ ├── dh_prime.txt │ │ │ ├── dh_server.c │ │ │ ├── ecdh_curve25519.c │ │ │ ├── ecdsa.c │ │ │ ├── gen_key.c │ │ │ ├── key_app.c │ │ │ ├── key_app_writer.c │ │ │ ├── mpi_demo.c │ │ │ ├── pk_decrypt.c │ │ │ ├── pk_encrypt.c │ │ │ ├── pk_sign.c │ │ │ ├── pk_verify.c │ │ │ ├── rsa_decrypt.c │ │ │ ├── rsa_encrypt.c │ │ │ ├── rsa_genkey.c │ │ │ ├── rsa_priv.txt │ │ │ ├── rsa_pub.txt │ │ │ ├── rsa_sign.c │ │ │ ├── rsa_sign_pss.c │ │ │ ├── rsa_verify.c │ │ │ └── rsa_verify_pss.c │ │ ├── random │ │ │ ├── CMakeLists.txt │ │ │ ├── gen_entropy.c │ │ │ ├── gen_random_ctr_drbg.c │ │ │ └── gen_random_havege.c │ │ ├── ssl │ │ │ ├── CMakeLists.txt │ │ │ ├── dtls_client.c │ │ │ ├── dtls_server.c │ │ │ ├── mini_client.c │ │ │ ├── ssl_client1.c │ │ │ ├── ssl_client2.c │ │ │ ├── ssl_fork_server.c │ │ │ ├── ssl_mail_client.c │ │ │ ├── ssl_pthread_server.c │ │ │ ├── ssl_server.c │ │ │ └── ssl_server2.c │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── benchmark.c │ │ │ ├── selftest.c │ │ │ ├── ssl_cert_test.c │ │ │ └── udp_proxy.c │ │ ├── util │ │ │ ├── CMakeLists.txt │ │ │ ├── pem2der.c │ │ │ └── strerror.c │ │ ├── wince_main.c │ │ └── x509 │ │ │ ├── CMakeLists.txt │ │ │ ├── cert_app.c │ │ │ ├── cert_req.c │ │ │ ├── cert_write.c │ │ │ ├── crl_app.c │ │ │ └── req_app.c │ ├── scripts │ │ ├── bump_version.sh │ │ ├── config.pl │ │ ├── data_files │ │ │ ├── error.fmt │ │ │ ├── rename-1.3-2.0.txt │ │ │ ├── version_features.fmt │ │ │ ├── vs2010-app-template.vcxproj │ │ │ ├── vs2010-main-template.vcxproj │ │ │ ├── vs2010-sln-template.sln │ │ │ ├── vs6-app-template.dsp │ │ │ ├── vs6-main-template.dsp │ │ │ └── vs6-workspace-template.dsw │ │ ├── ecc-heap.sh │ │ ├── find-mem-leak.cocci │ │ ├── footprint.sh │ │ ├── generate_errors.pl │ │ ├── generate_features.pl │ │ ├── generate_visualc_files.pl │ │ ├── malloc-init.pl │ │ ├── massif_max.pl │ │ ├── memory.sh │ │ ├── rename.pl │ │ ├── rm-malloc-cast.cocci │ │ └── tmp_ignore_makefiles.sh │ ├── tests │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Descriptions.txt │ │ ├── Makefile │ │ ├── compat.sh │ │ ├── data_files │ │ │ ├── Readme-x509.txt │ │ │ ├── bitstring-in-dn.pem │ │ │ ├── cert_example_multi.crt │ │ │ ├── cert_example_multi_nocn.crt │ │ │ ├── cert_example_wildcard.crt │ │ │ ├── cert_md2.crt │ │ │ ├── cert_md4.crt │ │ │ ├── cert_md5.crt │ │ │ ├── cert_sha1.crt │ │ │ ├── cert_sha224.crt │ │ │ ├── cert_sha256.crt │ │ │ ├── cert_sha384.crt │ │ │ ├── cert_sha512.crt │ │ │ ├── cert_v1_with_ext.crt │ │ │ ├── cli2.crt │ │ │ ├── cli2.key │ │ │ ├── crl-ec-sha1.pem │ │ │ ├── crl-ec-sha224.pem │ │ │ ├── crl-ec-sha256.pem │ │ │ ├── crl-ec-sha384.pem │ │ │ ├── crl-ec-sha512.pem │ │ │ ├── crl-future.pem │ │ │ ├── crl-rsa-pss-sha1-badsign.pem │ │ │ ├── crl-rsa-pss-sha1.pem │ │ │ ├── crl-rsa-pss-sha224.pem │ │ │ ├── crl-rsa-pss-sha256.pem │ │ │ ├── crl-rsa-pss-sha384.pem │ │ │ ├── crl-rsa-pss-sha512.pem │ │ │ ├── crl.pem │ │ │ ├── crl_cat_ec-rsa.pem │ │ │ ├── crl_cat_ecfut-rsa.pem │ │ │ ├── crl_cat_rsa-ec.pem │ │ │ ├── crl_cat_rsabadpem-ec.pem │ │ │ ├── crl_expired.pem │ │ │ ├── crl_md2.pem │ │ │ ├── crl_md4.pem │ │ │ ├── crl_md5.pem │ │ │ ├── crl_sha1.pem │ │ │ ├── crl_sha224.pem │ │ │ ├── crl_sha256.pem │ │ │ ├── crl_sha384.pem │ │ │ ├── crl_sha512.pem │ │ │ ├── crt_cat_rsaexp-ec.pem │ │ │ ├── dh.1000.pem │ │ │ ├── dh.optlen.pem │ │ │ ├── dhparams.pem │ │ │ ├── dir1 │ │ │ │ └── test-ca.crt │ │ │ ├── dir2 │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca2.crt │ │ │ ├── dir3 │ │ │ │ ├── Readme │ │ │ │ ├── test-ca.crt │ │ │ │ └── test-ca2.crt │ │ │ ├── dir4 │ │ │ │ ├── Readme │ │ │ │ ├── cert11.crt │ │ │ │ ├── cert12.crt │ │ │ │ ├── cert13.crt │ │ │ │ ├── cert14.crt │ │ │ │ ├── cert21.crt │ │ │ │ ├── cert22.crt │ │ │ │ ├── cert23.crt │ │ │ │ ├── cert31.crt │ │ │ │ ├── cert32.crt │ │ │ │ ├── cert33.crt │ │ │ │ ├── cert34.crt │ │ │ │ ├── cert41.crt │ │ │ │ ├── cert42.crt │ │ │ │ ├── cert43.crt │ │ │ │ ├── cert44.crt │ │ │ │ ├── cert45.crt │ │ │ │ ├── cert51.crt │ │ │ │ ├── cert52.crt │ │ │ │ ├── cert53.crt │ │ │ │ ├── cert54.crt │ │ │ │ ├── cert61.crt │ │ │ │ ├── cert62.crt │ │ │ │ ├── cert63.crt │ │ │ │ ├── cert71.crt │ │ │ │ ├── cert72.crt │ │ │ │ ├── cert73.crt │ │ │ │ ├── cert74.crt │ │ │ │ ├── cert81.crt │ │ │ │ ├── cert82.crt │ │ │ │ ├── cert83.crt │ │ │ │ ├── cert91.crt │ │ │ │ └── cert92.crt │ │ │ ├── ec_224_prv.pem │ │ │ ├── ec_224_pub.pem │ │ │ ├── ec_256_prv.pem │ │ │ ├── ec_256_pub.pem │ │ │ ├── ec_384_prv.pem │ │ │ ├── ec_384_pub.pem │ │ │ ├── ec_521_prv.pem │ │ │ ├── ec_521_pub.pem │ │ │ ├── ec_bp256_prv.pem │ │ │ ├── ec_bp256_pub.pem │ │ │ ├── ec_bp384_prv.pem │ │ │ ├── ec_bp384_pub.pem │ │ │ ├── ec_bp512_prv.pem │ │ │ ├── ec_bp512_pub.pem │ │ │ ├── ec_prv.noopt.der │ │ │ ├── ec_prv.pk8.der │ │ │ ├── ec_prv.pk8.pem │ │ │ ├── ec_prv.pk8.pw.der │ │ │ ├── ec_prv.pk8.pw.pem │ │ │ ├── ec_prv.sec1.der │ │ │ ├── ec_prv.sec1.pem │ │ │ ├── ec_prv.sec1.pw.pem │ │ │ ├── ec_prv.specdom.der │ │ │ ├── ec_pub.der │ │ │ ├── ec_pub.pem │ │ │ ├── enco-ca-prstr.pem │ │ │ ├── enco-cert-utf8str.pem │ │ │ ├── format_gen.key │ │ │ ├── format_gen.pub │ │ │ ├── format_pkcs12.fmt │ │ │ ├── format_rsa.key │ │ │ ├── hash_file_1 │ │ │ ├── hash_file_2 │ │ │ ├── hash_file_3 │ │ │ ├── hash_file_4 │ │ │ ├── hash_file_5 │ │ │ ├── keyUsage.decipherOnly.crt │ │ │ ├── keyfile │ │ │ ├── keyfile.3des │ │ │ ├── keyfile.aes128 │ │ │ ├── keyfile.aes192 │ │ │ ├── keyfile.aes256 │ │ │ ├── keyfile.des │ │ │ ├── mpi_10 │ │ │ ├── mpi_too_big │ │ │ ├── passwd.psk │ │ │ ├── pkcs8_pbe_sha1_2des.key │ │ │ ├── pkcs8_pbe_sha1_3des.der │ │ │ ├── pkcs8_pbe_sha1_3des.key │ │ │ ├── pkcs8_pbe_sha1_rc4_128.key │ │ │ ├── pkcs8_pbes2_pbkdf2_3des.der │ │ │ ├── pkcs8_pbes2_pbkdf2_3des.key │ │ │ ├── pkcs8_pbes2_pbkdf2_des.key │ │ │ ├── rsa4096_prv.pem │ │ │ ├── rsa4096_pub.pem │ │ │ ├── server1-nospace.crt │ │ │ ├── server1-v1.crt │ │ │ ├── server1.cert_type.crt │ │ │ ├── server1.crt │ │ │ ├── server1.ext_ku.crt │ │ │ ├── server1.key │ │ │ ├── server1.key_usage.crt │ │ │ ├── server1.pubkey │ │ │ ├── server1.req.cert_type │ │ │ ├── server1.req.key_usage │ │ │ ├── server1.req.ku-ct │ │ │ ├── server1.req.md4 │ │ │ ├── server1.req.md5 │ │ │ ├── server1.req.sha1 │ │ │ ├── server1.req.sha224 │ │ │ ├── server1.req.sha256 │ │ │ ├── server1.req.sha384 │ │ │ ├── server1.req.sha512 │ │ │ ├── server1.v1.crt │ │ │ ├── server10.key │ │ │ ├── server10_int3_int-ca2.crt │ │ │ ├── server10_int3_int-ca2_ca.crt │ │ │ ├── server1_ca.crt │ │ │ ├── server2-badsign.crt │ │ │ ├── server2-v1-chain.crt │ │ │ ├── server2-v1.crt │ │ │ ├── server2.crt │ │ │ ├── server2.key │ │ │ ├── server2.ku-ds.crt │ │ │ ├── server2.ku-ds_ke.crt │ │ │ ├── server2.ku-ka.crt │ │ │ ├── server2.ku-ke.crt │ │ │ ├── server3.crt │ │ │ ├── server3.key │ │ │ ├── server4.crt │ │ │ ├── server4.key │ │ │ ├── server5-badsign.crt │ │ │ ├── server5-expired.crt │ │ │ ├── server5-future.crt │ │ │ ├── server5-selfsigned.crt │ │ │ ├── server5-sha1.crt │ │ │ ├── server5-sha224.crt │ │ │ ├── server5-sha384.crt │ │ │ ├── server5-sha512.crt │ │ │ ├── server5.crt │ │ │ ├── server5.eku-cli.crt │ │ │ ├── server5.eku-cs.crt │ │ │ ├── server5.eku-cs_any.crt │ │ │ ├── server5.eku-srv.crt │ │ │ ├── server5.eku-srv_cli.crt │ │ │ ├── server5.key │ │ │ ├── server5.ku-ds.crt │ │ │ ├── server5.ku-ka.crt │ │ │ ├── server5.ku-ke.crt │ │ │ ├── server5.req.ku.sha1 │ │ │ ├── server5.req.sha1 │ │ │ ├── server5.req.sha224 │ │ │ ├── server5.req.sha256 │ │ │ ├── server5.req.sha384 │ │ │ ├── server5.req.sha512 │ │ │ ├── server6-ss-child.crt │ │ │ ├── server6.crt │ │ │ ├── server6.key │ │ │ ├── server7.crt │ │ │ ├── server7.key │ │ │ ├── server7_all_space.crt │ │ │ ├── server7_int-ca.crt │ │ │ ├── server7_int-ca_ca2.crt │ │ │ ├── server7_pem_space.crt │ │ │ ├── server7_trailing_space.crt │ │ │ ├── server8.crt │ │ │ ├── server8.key │ │ │ ├── server8_int-ca2.crt │ │ │ ├── server9-bad-mgfhash.crt │ │ │ ├── server9-bad-saltlen.crt │ │ │ ├── server9-badsign.crt │ │ │ ├── server9-defaults.crt │ │ │ ├── server9-sha224.crt │ │ │ ├── server9-sha256.crt │ │ │ ├── server9-sha384.crt │ │ │ ├── server9-sha512.crt │ │ │ ├── server9-with-ca.crt │ │ │ ├── server9.crt │ │ │ ├── server9.key │ │ │ ├── server9.req.sha1 │ │ │ ├── server9.req.sha224 │ │ │ ├── server9.req.sha256 │ │ │ ├── server9.req.sha384 │ │ │ ├── server9.req.sha512 │ │ │ ├── test-ca-v1.crt │ │ │ ├── test-ca.crt │ │ │ ├── test-ca.key │ │ │ ├── test-ca2.crt │ │ │ ├── test-ca2.key │ │ │ ├── test-ca2.ku-crl.crt │ │ │ ├── test-ca2.ku-crt.crt │ │ │ ├── test-ca2.ku-crt_crl.crt │ │ │ ├── test-ca2.ku-ds.crt │ │ │ ├── test-ca_cat12.crt │ │ │ ├── test-ca_cat21.crt │ │ │ ├── test-int-ca.crt │ │ │ ├── test-int-ca.key │ │ │ ├── test-int-ca2.crt │ │ │ ├── test-int-ca2.key │ │ │ ├── test-int-ca3.crt │ │ │ └── test-int-ca3.key │ │ ├── scripts │ │ │ ├── all.sh │ │ │ ├── check-doxy-blocks.pl │ │ │ ├── check-generated-files.sh │ │ │ ├── check-names.sh │ │ │ ├── curves.pl │ │ │ ├── gen_ctr_drbg.pl │ │ │ ├── gen_gcm_decrypt.pl │ │ │ ├── gen_gcm_encrypt.pl │ │ │ ├── gen_pkcs1_v21_sign_verify.pl │ │ │ ├── generate_code.pl │ │ │ ├── key-exchanges.pl │ │ │ ├── list-enum-consts.pl │ │ │ ├── list-identifiers.sh │ │ │ ├── list-macros.sh │ │ │ ├── list-symbols.sh │ │ │ ├── recursion.pl │ │ │ ├── run-test-suites.pl │ │ │ ├── test-ref-configs.pl │ │ │ └── yotta-build.sh │ │ ├── ssl-opt.sh │ │ └── suites │ │ │ ├── helpers.function │ │ │ ├── main_test.function │ │ │ ├── test_suite_aes.cbc.data │ │ │ ├── test_suite_aes.cfb.data │ │ │ ├── test_suite_aes.ecb.data │ │ │ ├── test_suite_aes.function │ │ │ ├── test_suite_aes.rest.data │ │ │ ├── test_suite_arc4.data │ │ │ ├── test_suite_arc4.function │ │ │ ├── test_suite_asn1write.data │ │ │ ├── test_suite_asn1write.function │ │ │ ├── test_suite_base64.data │ │ │ ├── test_suite_base64.function │ │ │ ├── test_suite_blowfish.data │ │ │ ├── test_suite_blowfish.function │ │ │ ├── test_suite_camellia.data │ │ │ ├── test_suite_camellia.function │ │ │ ├── test_suite_ccm.data │ │ │ ├── test_suite_ccm.function │ │ │ ├── test_suite_cipher.aes.data │ │ │ ├── test_suite_cipher.arc4.data │ │ │ ├── test_suite_cipher.blowfish.data │ │ │ ├── test_suite_cipher.camellia.data │ │ │ ├── test_suite_cipher.ccm.data │ │ │ ├── test_suite_cipher.des.data │ │ │ ├── test_suite_cipher.function │ │ │ ├── test_suite_cipher.gcm.data │ │ │ ├── test_suite_cipher.null.data │ │ │ ├── test_suite_cipher.padding.data │ │ │ ├── test_suite_ctr_drbg.data │ │ │ ├── test_suite_ctr_drbg.function │ │ │ ├── test_suite_debug.data │ │ │ ├── test_suite_debug.function │ │ │ ├── test_suite_des.data │ │ │ ├── test_suite_des.function │ │ │ ├── test_suite_dhm.data │ │ │ ├── test_suite_dhm.function │ │ │ ├── test_suite_ecdh.data │ │ │ ├── test_suite_ecdh.function │ │ │ ├── test_suite_ecdsa.data │ │ │ ├── test_suite_ecdsa.function │ │ │ ├── test_suite_ecjpake.data │ │ │ ├── test_suite_ecjpake.function │ │ │ ├── test_suite_ecp.data │ │ │ ├── test_suite_ecp.function │ │ │ ├── test_suite_entropy.data │ │ │ ├── test_suite_entropy.function │ │ │ ├── test_suite_error.data │ │ │ ├── test_suite_error.function │ │ │ ├── test_suite_gcm.aes128_de.data │ │ │ ├── test_suite_gcm.aes128_en.data │ │ │ ├── test_suite_gcm.aes192_de.data │ │ │ ├── test_suite_gcm.aes192_en.data │ │ │ ├── test_suite_gcm.aes256_de.data │ │ │ ├── test_suite_gcm.aes256_en.data │ │ │ ├── test_suite_gcm.camellia.data │ │ │ ├── test_suite_gcm.function │ │ │ ├── test_suite_hmac_drbg.function │ │ │ ├── test_suite_hmac_drbg.misc.data │ │ │ ├── test_suite_hmac_drbg.no_reseed.data │ │ │ ├── test_suite_hmac_drbg.nopr.data │ │ │ ├── test_suite_hmac_drbg.pr.data │ │ │ ├── test_suite_md.data │ │ │ ├── test_suite_md.function │ │ │ ├── test_suite_mdx.data │ │ │ ├── test_suite_mdx.function │ │ │ ├── test_suite_memory_buffer_alloc.data │ │ │ ├── test_suite_memory_buffer_alloc.function │ │ │ ├── test_suite_mpi.data │ │ │ ├── test_suite_mpi.function │ │ │ ├── test_suite_pem.data │ │ │ ├── test_suite_pem.function │ │ │ ├── test_suite_pk.data │ │ │ ├── test_suite_pk.function │ │ │ ├── test_suite_pkcs1_v21.data │ │ │ ├── test_suite_pkcs1_v21.function │ │ │ ├── test_suite_pkcs5.data │ │ │ ├── test_suite_pkcs5.function │ │ │ ├── test_suite_pkparse.data │ │ │ ├── test_suite_pkparse.function │ │ │ ├── test_suite_pkwrite.data │ │ │ ├── test_suite_pkwrite.function │ │ │ ├── test_suite_rsa.data │ │ │ ├── test_suite_rsa.function │ │ │ ├── test_suite_shax.data │ │ │ ├── test_suite_shax.function │ │ │ ├── test_suite_ssl.data │ │ │ ├── test_suite_ssl.function │ │ │ ├── test_suite_version.data │ │ │ ├── test_suite_version.function │ │ │ ├── test_suite_x509parse.data │ │ │ ├── test_suite_x509parse.function │ │ │ ├── test_suite_x509write.data │ │ │ ├── test_suite_x509write.function │ │ │ ├── test_suite_xtea.data │ │ │ └── test_suite_xtea.function │ ├── visualc │ │ └── VS2010 │ │ │ ├── aescrypt2.vcxproj │ │ │ ├── benchmark.vcxproj │ │ │ ├── cert_app.vcxproj │ │ │ ├── cert_req.vcxproj │ │ │ ├── cert_write.vcxproj │ │ │ ├── crl_app.vcxproj │ │ │ ├── crypt_and_hash.vcxproj │ │ │ ├── dh_client.vcxproj │ │ │ ├── dh_genprime.vcxproj │ │ │ ├── dh_server.vcxproj │ │ │ ├── dtls_client.vcxproj │ │ │ ├── dtls_server.vcxproj │ │ │ ├── ecdsa.vcxproj │ │ │ ├── gen_entropy.vcxproj │ │ │ ├── gen_key.vcxproj │ │ │ ├── gen_random_ctr_drbg.vcxproj │ │ │ ├── gen_random_havege.vcxproj │ │ │ ├── generic_sum.vcxproj │ │ │ ├── hello.vcxproj │ │ │ ├── key_app.vcxproj │ │ │ ├── key_app_writer.vcxproj │ │ │ ├── mbedTLS.sln │ │ │ ├── mbedTLS.vcxproj │ │ │ ├── md5sum.vcxproj │ │ │ ├── mini_client.vcxproj │ │ │ ├── mpi_demo.vcxproj │ │ │ ├── pem2der.vcxproj │ │ │ ├── pk_decrypt.vcxproj │ │ │ ├── pk_encrypt.vcxproj │ │ │ ├── pk_sign.vcxproj │ │ │ ├── pk_verify.vcxproj │ │ │ ├── req_app.vcxproj │ │ │ ├── rsa_decrypt.vcxproj │ │ │ ├── rsa_encrypt.vcxproj │ │ │ ├── rsa_genkey.vcxproj │ │ │ ├── rsa_sign.vcxproj │ │ │ ├── rsa_sign_pss.vcxproj │ │ │ ├── rsa_verify.vcxproj │ │ │ ├── rsa_verify_pss.vcxproj │ │ │ ├── selftest.vcxproj │ │ │ ├── sha1sum.vcxproj │ │ │ ├── sha2sum.vcxproj │ │ │ ├── ssl_cert_test.vcxproj │ │ │ ├── ssl_client1.vcxproj │ │ │ ├── ssl_client2.vcxproj │ │ │ ├── ssl_fork_server.vcxproj │ │ │ ├── ssl_mail_client.vcxproj │ │ │ ├── ssl_server.vcxproj │ │ │ ├── ssl_server2.vcxproj │ │ │ ├── strerror.vcxproj │ │ │ └── udp_proxy.vcxproj │ └── yotta │ │ ├── .gitignore │ │ ├── create-module.sh │ │ └── data │ │ ├── README.md │ │ ├── adjust-config.sh │ │ ├── entropy_hardware_poll.c │ │ ├── example-authcrypt │ │ ├── README.md │ │ └── main.cpp │ │ ├── example-benchmark │ │ ├── README.md │ │ └── main.cpp │ │ ├── example-hashing │ │ ├── README.md │ │ └── main.cpp │ │ ├── example-selftest │ │ ├── README.md │ │ └── main.cpp │ │ ├── module.json │ │ └── target_config.h ├── sc4 │ ├── b58.c │ ├── b58.h │ ├── display.cpp │ ├── hardware.c │ ├── hardware.h │ ├── main.c │ ├── tweetnacl-aux.h │ ├── tweetnacl.c │ ├── tweetnacl.h │ ├── utils.c │ └── utils.h ├── stm │ ├── Legacy │ │ └── stm32_hal_legacy.h │ ├── cmsis_gcc.h │ ├── core_cm4.h │ ├── core_cmFunc.h │ ├── core_cmInstr.h │ ├── core_cmSimd.h │ ├── stm32f405xx.h │ ├── stm32f4xx.h │ ├── stm32f4xx_hal.c │ ├── stm32f4xx_hal.h │ ├── stm32f4xx_hal_adc.c │ ├── stm32f4xx_hal_adc_ex.c │ ├── stm32f4xx_hal_can.c │ ├── stm32f4xx_hal_cec.c │ ├── stm32f4xx_hal_cortex.c │ ├── stm32f4xx_hal_cortex.h │ ├── stm32f4xx_hal_crc.c │ ├── stm32f4xx_hal_cryp.c │ ├── stm32f4xx_hal_cryp_ex.c │ ├── stm32f4xx_hal_dac.c │ ├── stm32f4xx_hal_dac_ex.c │ ├── stm32f4xx_hal_dcmi.c │ ├── stm32f4xx_hal_dcmi_ex.c │ ├── stm32f4xx_hal_def.h │ ├── stm32f4xx_hal_dma.c │ ├── stm32f4xx_hal_dma.h │ ├── stm32f4xx_hal_dma2d.c │ ├── stm32f4xx_hal_dma_ex.c │ ├── stm32f4xx_hal_dma_ex.h │ ├── stm32f4xx_hal_dsi.c │ ├── stm32f4xx_hal_eth.c │ ├── stm32f4xx_hal_flash.c │ ├── stm32f4xx_hal_flash.h │ ├── stm32f4xx_hal_flash_ex.c │ ├── stm32f4xx_hal_flash_ex.h │ ├── stm32f4xx_hal_flash_ramfunc.c │ ├── stm32f4xx_hal_flash_ramfunc.h │ ├── stm32f4xx_hal_fmpi2c.c │ ├── stm32f4xx_hal_fmpi2c_ex.c │ ├── stm32f4xx_hal_gpio.c │ ├── stm32f4xx_hal_gpio.h │ ├── stm32f4xx_hal_gpio_ex.h │ ├── stm32f4xx_hal_hash.c │ ├── stm32f4xx_hal_hash_ex.c │ ├── stm32f4xx_hal_hcd.c │ ├── stm32f4xx_hal_i2c.c │ ├── stm32f4xx_hal_i2c_ex.c │ ├── stm32f4xx_hal_i2s.c │ ├── stm32f4xx_hal_i2s_ex.c │ ├── stm32f4xx_hal_irda.c │ ├── stm32f4xx_hal_iwdg.c │ ├── stm32f4xx_hal_lptim.c │ ├── stm32f4xx_hal_ltdc.c │ ├── stm32f4xx_hal_ltdc_ex.c │ ├── stm32f4xx_hal_nand.c │ ├── stm32f4xx_hal_nor.c │ ├── stm32f4xx_hal_pccard.c │ ├── stm32f4xx_hal_pcd.c │ ├── stm32f4xx_hal_pcd.h │ ├── stm32f4xx_hal_pcd_ex.c │ ├── stm32f4xx_hal_pcd_ex.h │ ├── stm32f4xx_hal_pwr.c │ ├── stm32f4xx_hal_pwr.h │ ├── stm32f4xx_hal_pwr_ex.c │ ├── stm32f4xx_hal_pwr_ex.h │ ├── stm32f4xx_hal_qspi.c │ ├── stm32f4xx_hal_rcc.c │ ├── stm32f4xx_hal_rcc.h │ ├── stm32f4xx_hal_rcc_ex.c │ ├── stm32f4xx_hal_rcc_ex.h │ ├── stm32f4xx_hal_rng.c │ ├── stm32f4xx_hal_rng.h │ ├── stm32f4xx_hal_rtc.c │ ├── stm32f4xx_hal_rtc_ex.c │ ├── stm32f4xx_hal_sai.c │ ├── stm32f4xx_hal_sai_ex.c │ ├── stm32f4xx_hal_sd.c │ ├── stm32f4xx_hal_sdram.c │ ├── stm32f4xx_hal_smartcard.c │ ├── stm32f4xx_hal_spdifrx.c │ ├── stm32f4xx_hal_spi.c │ ├── stm32f4xx_hal_spi.h │ ├── stm32f4xx_hal_sram.c │ ├── stm32f4xx_hal_tim.c │ ├── stm32f4xx_hal_tim_ex.c │ ├── stm32f4xx_hal_usart.c │ ├── stm32f4xx_hal_wwdg.c │ ├── stm32f4xx_ll_fmc.c │ ├── stm32f4xx_ll_fsmc.c │ ├── stm32f4xx_ll_sdmmc.c │ ├── stm32f4xx_ll_usb.c │ ├── stm32f4xx_ll_usb.h │ ├── system_stm32f4xx.c │ ├── system_stm32f4xx.h │ ├── usbd_cdc.c │ ├── usbd_cdc.h │ ├── usbd_core.c │ ├── usbd_core.h │ ├── usbd_ctlreq.c │ ├── usbd_ctlreq.h │ ├── usbd_def.h │ ├── usbd_hid.c │ ├── usbd_hid.h │ ├── usbd_ioreq.c │ └── usbd_ioreq.h ├── stubs │ ├── README.txt │ ├── _cxx.cpp │ ├── _exit.c │ ├── _sbrk.c │ ├── _startup.c │ ├── _syscalls.c │ ├── assert.c │ └── trace.h ├── tinyscheme │ ├── opdefines.h │ ├── scheme-private.h │ ├── scheme.c │ └── scheme.h └── u2f │ ├── endian.h │ ├── keys.h │ ├── list.h │ ├── stm32_entropy.c │ ├── u2f.h │ ├── u2f_hid.h │ ├── u2f_messages.c │ ├── u2f_messages.h │ ├── usbd_u2f_hid_if.c │ ├── usbd_u2f_hid_if.h │ ├── usbd_u2fhid.c │ └── usbd_u2fhid.h └── tools ├── Makefile ├── dfu.py ├── hsm ├── hsm-hash.lisp ├── hsm-hash.py └── term.c /.gitignore: -------------------------------------------------------------------------------- 1 | src/build 2 | src/scheme 3 | tools/term 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/README.md -------------------------------------------------------------------------------- /doc/SC4-HSM user manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/doc/SC4-HSM user manual.md -------------------------------------------------------------------------------- /doc/sc4-hsm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/doc/sc4-hsm1.jpg -------------------------------------------------------------------------------- /doc/sc4-hsm2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/doc/sc4-hsm2.jpg -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/ldscripts/mem.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/ldscripts/mem.ld -------------------------------------------------------------------------------- /src/ldscripts/sections.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/ldscripts/sections.ld -------------------------------------------------------------------------------- /src/lib/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /src/lib/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/Adafruit_GFX.h -------------------------------------------------------------------------------- /src/lib/Adafruit_SSD1306.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/Adafruit_SSD1306.cpp -------------------------------------------------------------------------------- /src/lib/Adafruit_SSD1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/Adafruit_SSD1306.h -------------------------------------------------------------------------------- /src/lib/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/Print.cpp -------------------------------------------------------------------------------- /src/lib/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/Print.h -------------------------------------------------------------------------------- /src/lib/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/Printable.h -------------------------------------------------------------------------------- /src/lib/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/WString.h -------------------------------------------------------------------------------- /src/lib/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/gfxfont.h -------------------------------------------------------------------------------- /src/lib/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/glcdfont.c -------------------------------------------------------------------------------- /src/lib/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/init.c -------------------------------------------------------------------------------- /src/lib/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/init.h -------------------------------------------------------------------------------- /src/lib/pgmspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/pgmspace.h -------------------------------------------------------------------------------- /src/lib/pinmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/pinmap.h -------------------------------------------------------------------------------- /src/lib/startup_stm32f415xx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/startup_stm32f415xx.s -------------------------------------------------------------------------------- /src/lib/stm32f4xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/stm32f4xx_hal_conf.h -------------------------------------------------------------------------------- /src/lib/stm32f4xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/stm32f4xx_hal_msp.c -------------------------------------------------------------------------------- /src/lib/stm32f4xx_hal_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/stm32f4xx_hal_uart.h -------------------------------------------------------------------------------- /src/lib/stm32f4xx_hal_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/stm32f4xx_hal_usart.h -------------------------------------------------------------------------------- /src/lib/stm32f4xx_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/stm32f4xx_it.c -------------------------------------------------------------------------------- /src/lib/stm32f4xx_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/stm32f4xx_it.h -------------------------------------------------------------------------------- /src/lib/usb_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/usb_device.h -------------------------------------------------------------------------------- /src/lib/usbd_cdc_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/usbd_cdc_if.c -------------------------------------------------------------------------------- /src/lib/usbd_cdc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/usbd_cdc_if.h -------------------------------------------------------------------------------- /src/lib/usbd_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/usbd_conf.c -------------------------------------------------------------------------------- /src/lib/usbd_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/usbd_conf.h -------------------------------------------------------------------------------- /src/lib/usbd_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/usbd_desc.c -------------------------------------------------------------------------------- /src/lib/usbd_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/lib/usbd_desc.h -------------------------------------------------------------------------------- /src/mbedtls/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/.gitignore -------------------------------------------------------------------------------- /src/mbedtls/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/.travis.yml -------------------------------------------------------------------------------- /src/mbedtls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/ChangeLog -------------------------------------------------------------------------------- /src/mbedtls/DartConfiguration.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/DartConfiguration.tcl -------------------------------------------------------------------------------- /src/mbedtls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/LICENSE -------------------------------------------------------------------------------- /src/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/Makefile -------------------------------------------------------------------------------- /src/mbedtls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/README.md -------------------------------------------------------------------------------- /src/mbedtls/apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/apache-2.0.txt -------------------------------------------------------------------------------- /src/mbedtls/configs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/configs/README.txt -------------------------------------------------------------------------------- /src/mbedtls/configs/config-ccm-psk-tls1_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/configs/config-ccm-psk-tls1_2.h -------------------------------------------------------------------------------- /src/mbedtls/configs/config-mini-tls1_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/configs/config-mini-tls1_1.h -------------------------------------------------------------------------------- /src/mbedtls/configs/config-picocoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/configs/config-picocoin.h -------------------------------------------------------------------------------- /src/mbedtls/configs/config-suite-b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/configs/config-suite-b.h -------------------------------------------------------------------------------- /src/mbedtls/configs/config-thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/configs/config-thread.h -------------------------------------------------------------------------------- /src/mbedtls/doxygen/input/doc_encdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/doxygen/input/doc_encdec.h -------------------------------------------------------------------------------- /src/mbedtls/doxygen/input/doc_hashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/doxygen/input/doc_hashing.h -------------------------------------------------------------------------------- /src/mbedtls/doxygen/input/doc_mainpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/doxygen/input/doc_mainpage.h -------------------------------------------------------------------------------- /src/mbedtls/doxygen/input/doc_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/doxygen/input/doc_rng.h -------------------------------------------------------------------------------- /src/mbedtls/doxygen/input/doc_ssltls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/doxygen/input/doc_ssltls.h -------------------------------------------------------------------------------- /src/mbedtls/doxygen/input/doc_tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/doxygen/input/doc_tcpip.h -------------------------------------------------------------------------------- /src/mbedtls/doxygen/input/doc_x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/doxygen/input/doc_x509.h -------------------------------------------------------------------------------- /src/mbedtls/doxygen/mbedtls.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/doxygen/mbedtls.doxyfile -------------------------------------------------------------------------------- /src/mbedtls/include/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.sln 3 | *.vcxproj 4 | mbedtls/check_config 5 | -------------------------------------------------------------------------------- /src/mbedtls/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/aes.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/aesni.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/arc4.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/asn1.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/asn1write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/asn1write.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/base64.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/bignum.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/blowfish.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/bn_mul.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/camellia.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ccm.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/certs.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/check_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/check_config.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/cipher.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/cipher_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/cipher_internal.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/compat-1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/compat-1.3.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/config.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ctr_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ctr_drbg.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/debug.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/des.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/dhm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/dhm.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ecdh.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ecdsa.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ecjpake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ecjpake.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ecp.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/entropy.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/entropy_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/entropy_poll.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/error.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/gcm.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/havege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/havege.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/hmac_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/hmac_drbg.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/md.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/md2.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/md4.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/md5.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/md_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/md_internal.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/memory_buffer_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/memory_buffer_alloc.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/net.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/oid.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/padlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/padlock.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/pem.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/pk.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/pk_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/pk_internal.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/pkcs11.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/pkcs12.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/pkcs5.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/platform.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ripemd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ripemd160.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/rsa.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/sha1.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/sha256.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/sha512.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ssl.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ssl_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ssl_cache.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ssl_ciphersuites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ssl_ciphersuites.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ssl_cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ssl_cookie.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ssl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ssl_internal.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/ssl_ticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/ssl_ticket.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/threading.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/timing.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/version.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/x509.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/x509_crl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/x509_crl.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/x509_crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/x509_crt.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/x509_csr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/x509_csr.h -------------------------------------------------------------------------------- /src/mbedtls/include/mbedtls/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/include/mbedtls/xtea.h -------------------------------------------------------------------------------- /src/mbedtls/library/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | libmbed* 3 | *.sln 4 | *.vcxproj 5 | -------------------------------------------------------------------------------- /src/mbedtls/library/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/Makefile -------------------------------------------------------------------------------- /src/mbedtls/library/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/aes.c -------------------------------------------------------------------------------- /src/mbedtls/library/aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/aesni.c -------------------------------------------------------------------------------- /src/mbedtls/library/arc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/arc4.c -------------------------------------------------------------------------------- /src/mbedtls/library/asn1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/asn1parse.c -------------------------------------------------------------------------------- /src/mbedtls/library/asn1write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/asn1write.c -------------------------------------------------------------------------------- /src/mbedtls/library/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/base64.c -------------------------------------------------------------------------------- /src/mbedtls/library/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/bignum.c -------------------------------------------------------------------------------- /src/mbedtls/library/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/blowfish.c -------------------------------------------------------------------------------- /src/mbedtls/library/camellia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/camellia.c -------------------------------------------------------------------------------- /src/mbedtls/library/ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ccm.c -------------------------------------------------------------------------------- /src/mbedtls/library/certs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/certs.c -------------------------------------------------------------------------------- /src/mbedtls/library/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/cipher.c -------------------------------------------------------------------------------- /src/mbedtls/library/cipher_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/cipher_wrap.c -------------------------------------------------------------------------------- /src/mbedtls/library/ctr_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ctr_drbg.c -------------------------------------------------------------------------------- /src/mbedtls/library/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/debug.c -------------------------------------------------------------------------------- /src/mbedtls/library/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/des.c -------------------------------------------------------------------------------- /src/mbedtls/library/dhm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/dhm.c -------------------------------------------------------------------------------- /src/mbedtls/library/ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ecdh.c -------------------------------------------------------------------------------- /src/mbedtls/library/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ecdsa.c -------------------------------------------------------------------------------- /src/mbedtls/library/ecjpake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ecjpake.c -------------------------------------------------------------------------------- /src/mbedtls/library/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ecp.c -------------------------------------------------------------------------------- /src/mbedtls/library/ecp_curves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ecp_curves.c -------------------------------------------------------------------------------- /src/mbedtls/library/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/entropy.c -------------------------------------------------------------------------------- /src/mbedtls/library/entropy_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/entropy_poll.c -------------------------------------------------------------------------------- /src/mbedtls/library/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/error.c -------------------------------------------------------------------------------- /src/mbedtls/library/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/gcm.c -------------------------------------------------------------------------------- /src/mbedtls/library/havege.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/havege.c -------------------------------------------------------------------------------- /src/mbedtls/library/hmac_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/hmac_drbg.c -------------------------------------------------------------------------------- /src/mbedtls/library/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/md.c -------------------------------------------------------------------------------- /src/mbedtls/library/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/md2.c -------------------------------------------------------------------------------- /src/mbedtls/library/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/md4.c -------------------------------------------------------------------------------- /src/mbedtls/library/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/md5.c -------------------------------------------------------------------------------- /src/mbedtls/library/md_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/md_wrap.c -------------------------------------------------------------------------------- /src/mbedtls/library/memory_buffer_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/memory_buffer_alloc.c -------------------------------------------------------------------------------- /src/mbedtls/library/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/oid.c -------------------------------------------------------------------------------- /src/mbedtls/library/padlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/padlock.c -------------------------------------------------------------------------------- /src/mbedtls/library/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/pem.c -------------------------------------------------------------------------------- /src/mbedtls/library/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/pk.c -------------------------------------------------------------------------------- /src/mbedtls/library/pk_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/pk_wrap.c -------------------------------------------------------------------------------- /src/mbedtls/library/pkcs11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/pkcs11.c -------------------------------------------------------------------------------- /src/mbedtls/library/pkcs12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/pkcs12.c -------------------------------------------------------------------------------- /src/mbedtls/library/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/pkcs5.c -------------------------------------------------------------------------------- /src/mbedtls/library/pkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/pkparse.c -------------------------------------------------------------------------------- /src/mbedtls/library/pkwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/pkwrite.c -------------------------------------------------------------------------------- /src/mbedtls/library/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/platform.c -------------------------------------------------------------------------------- /src/mbedtls/library/ripemd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ripemd160.c -------------------------------------------------------------------------------- /src/mbedtls/library/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/rsa.c -------------------------------------------------------------------------------- /src/mbedtls/library/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/sha1.c -------------------------------------------------------------------------------- /src/mbedtls/library/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/sha256.c -------------------------------------------------------------------------------- /src/mbedtls/library/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/sha512.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ssl_cache.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_ciphersuites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ssl_ciphersuites.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ssl_cli.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ssl_cookie.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ssl_srv.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_ticket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ssl_ticket.c -------------------------------------------------------------------------------- /src/mbedtls/library/ssl_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/ssl_tls.c -------------------------------------------------------------------------------- /src/mbedtls/library/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/threading.c -------------------------------------------------------------------------------- /src/mbedtls/library/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/timing.c -------------------------------------------------------------------------------- /src/mbedtls/library/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/version.c -------------------------------------------------------------------------------- /src/mbedtls/library/version_features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/version_features.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/x509.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/x509_create.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/x509_crl.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509_crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/x509_crt.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509_csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/x509_csr.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509write_crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/x509write_crt.c -------------------------------------------------------------------------------- /src/mbedtls/library/x509write_csr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/x509write_csr.c -------------------------------------------------------------------------------- /src/mbedtls/library/xtea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/library/xtea.c -------------------------------------------------------------------------------- /src/mbedtls/programs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/.gitignore -------------------------------------------------------------------------------- /src/mbedtls/programs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/Makefile -------------------------------------------------------------------------------- /src/mbedtls/programs/aes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/aes/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/aes/aescrypt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/aes/aescrypt2.c -------------------------------------------------------------------------------- /src/mbedtls/programs/aes/crypt_and_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/aes/crypt_and_hash.c -------------------------------------------------------------------------------- /src/mbedtls/programs/hash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/hash/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/hash/generic_sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/hash/generic_sum.c -------------------------------------------------------------------------------- /src/mbedtls/programs/hash/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/hash/hello.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/dh_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/dh_client.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/dh_genprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/dh_genprime.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/dh_prime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/dh_prime.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/dh_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/dh_server.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/ecdh_curve25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/ecdh_curve25519.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/ecdsa.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/gen_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/gen_key.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/key_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/key_app.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/key_app_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/key_app_writer.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/mpi_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/mpi_demo.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/pk_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/pk_decrypt.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/pk_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/pk_encrypt.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/pk_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/pk_sign.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/pk_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/pk_verify.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/rsa_decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/rsa_decrypt.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/rsa_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/rsa_encrypt.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/rsa_genkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/rsa_genkey.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/rsa_priv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/rsa_priv.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/rsa_pub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/rsa_pub.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/rsa_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/rsa_sign.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/rsa_sign_pss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/rsa_sign_pss.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/rsa_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/rsa_verify.c -------------------------------------------------------------------------------- /src/mbedtls/programs/pkey/rsa_verify_pss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/pkey/rsa_verify_pss.c -------------------------------------------------------------------------------- /src/mbedtls/programs/random/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/random/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/random/gen_entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/random/gen_entropy.c -------------------------------------------------------------------------------- /src/mbedtls/programs/random/gen_random_ctr_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/random/gen_random_ctr_drbg.c -------------------------------------------------------------------------------- /src/mbedtls/programs/random/gen_random_havege.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/random/gen_random_havege.c -------------------------------------------------------------------------------- /src/mbedtls/programs/ssl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/ssl/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/ssl/dtls_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/ssl/dtls_client.c -------------------------------------------------------------------------------- /src/mbedtls/programs/ssl/dtls_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/ssl/dtls_server.c -------------------------------------------------------------------------------- /src/mbedtls/programs/ssl/mini_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/ssl/mini_client.c -------------------------------------------------------------------------------- /src/mbedtls/programs/ssl/ssl_client1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/ssl/ssl_client1.c -------------------------------------------------------------------------------- /src/mbedtls/programs/ssl/ssl_client2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/ssl/ssl_client2.c -------------------------------------------------------------------------------- /src/mbedtls/programs/ssl/ssl_fork_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/ssl/ssl_fork_server.c -------------------------------------------------------------------------------- /src/mbedtls/programs/ssl/ssl_mail_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/ssl/ssl_mail_client.c -------------------------------------------------------------------------------- /src/mbedtls/programs/ssl/ssl_pthread_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/ssl/ssl_pthread_server.c -------------------------------------------------------------------------------- /src/mbedtls/programs/ssl/ssl_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/ssl/ssl_server.c -------------------------------------------------------------------------------- /src/mbedtls/programs/ssl/ssl_server2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/ssl/ssl_server2.c -------------------------------------------------------------------------------- /src/mbedtls/programs/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/test/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/test/benchmark.c -------------------------------------------------------------------------------- /src/mbedtls/programs/test/selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/test/selftest.c -------------------------------------------------------------------------------- /src/mbedtls/programs/test/ssl_cert_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/test/ssl_cert_test.c -------------------------------------------------------------------------------- /src/mbedtls/programs/test/udp_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/test/udp_proxy.c -------------------------------------------------------------------------------- /src/mbedtls/programs/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/util/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/util/pem2der.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/util/pem2der.c -------------------------------------------------------------------------------- /src/mbedtls/programs/util/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/util/strerror.c -------------------------------------------------------------------------------- /src/mbedtls/programs/wince_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/wince_main.c -------------------------------------------------------------------------------- /src/mbedtls/programs/x509/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/x509/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/programs/x509/cert_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/x509/cert_app.c -------------------------------------------------------------------------------- /src/mbedtls/programs/x509/cert_req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/x509/cert_req.c -------------------------------------------------------------------------------- /src/mbedtls/programs/x509/cert_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/x509/cert_write.c -------------------------------------------------------------------------------- /src/mbedtls/programs/x509/crl_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/x509/crl_app.c -------------------------------------------------------------------------------- /src/mbedtls/programs/x509/req_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/programs/x509/req_app.c -------------------------------------------------------------------------------- /src/mbedtls/scripts/bump_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/bump_version.sh -------------------------------------------------------------------------------- /src/mbedtls/scripts/config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/config.pl -------------------------------------------------------------------------------- /src/mbedtls/scripts/data_files/error.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/data_files/error.fmt -------------------------------------------------------------------------------- /src/mbedtls/scripts/data_files/rename-1.3-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/data_files/rename-1.3-2.0.txt -------------------------------------------------------------------------------- /src/mbedtls/scripts/data_files/version_features.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/data_files/version_features.fmt -------------------------------------------------------------------------------- /src/mbedtls/scripts/data_files/vs6-app-template.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/data_files/vs6-app-template.dsp -------------------------------------------------------------------------------- /src/mbedtls/scripts/data_files/vs6-main-template.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/data_files/vs6-main-template.dsp -------------------------------------------------------------------------------- /src/mbedtls/scripts/ecc-heap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/ecc-heap.sh -------------------------------------------------------------------------------- /src/mbedtls/scripts/find-mem-leak.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/find-mem-leak.cocci -------------------------------------------------------------------------------- /src/mbedtls/scripts/footprint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/footprint.sh -------------------------------------------------------------------------------- /src/mbedtls/scripts/generate_errors.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/generate_errors.pl -------------------------------------------------------------------------------- /src/mbedtls/scripts/generate_features.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/generate_features.pl -------------------------------------------------------------------------------- /src/mbedtls/scripts/generate_visualc_files.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/generate_visualc_files.pl -------------------------------------------------------------------------------- /src/mbedtls/scripts/malloc-init.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/malloc-init.pl -------------------------------------------------------------------------------- /src/mbedtls/scripts/massif_max.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/massif_max.pl -------------------------------------------------------------------------------- /src/mbedtls/scripts/memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/memory.sh -------------------------------------------------------------------------------- /src/mbedtls/scripts/rename.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/rename.pl -------------------------------------------------------------------------------- /src/mbedtls/scripts/rm-malloc-cast.cocci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/rm-malloc-cast.cocci -------------------------------------------------------------------------------- /src/mbedtls/scripts/tmp_ignore_makefiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/scripts/tmp_ignore_makefiles.sh -------------------------------------------------------------------------------- /src/mbedtls/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/.gitignore -------------------------------------------------------------------------------- /src/mbedtls/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbedtls/tests/Descriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/Descriptions.txt -------------------------------------------------------------------------------- /src/mbedtls/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/Makefile -------------------------------------------------------------------------------- /src/mbedtls/tests/compat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/compat.sh -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/Readme-x509.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/Readme-x509.txt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/bitstring-in-dn.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/bitstring-in-dn.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cert_example_multi.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cert_example_multi.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cert_md2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cert_md2.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cert_md4.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cert_md4.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cert_md5.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cert_md5.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cert_sha1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cert_sha1.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cert_sha224.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cert_sha224.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cert_sha256.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cert_sha256.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cert_sha384.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cert_sha384.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cert_sha512.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cert_sha512.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cert_v1_with_ext.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cert_v1_with_ext.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cli2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cli2.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/cli2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/cli2.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl-ec-sha1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl-ec-sha1.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl-ec-sha224.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl-ec-sha224.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl-ec-sha256.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl-ec-sha256.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl-ec-sha384.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl-ec-sha384.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl-ec-sha512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl-ec-sha512.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl-future.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl-future.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl-rsa-pss-sha1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl-rsa-pss-sha1.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl-rsa-pss-sha224.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl-rsa-pss-sha224.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl-rsa-pss-sha256.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl-rsa-pss-sha256.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl-rsa-pss-sha384.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl-rsa-pss-sha384.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl-rsa-pss-sha512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl-rsa-pss-sha512.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_cat_ec-rsa.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_cat_ec-rsa.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_cat_ecfut-rsa.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_cat_ecfut-rsa.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_cat_rsa-ec.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_cat_rsa-ec.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_cat_rsabadpem-ec.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_cat_rsabadpem-ec.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_expired.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_expired.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_md2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_md2.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_md4.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_md4.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_md5.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_md5.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_sha1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_sha1.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_sha224.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_sha224.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_sha256.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_sha256.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_sha384.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_sha384.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crl_sha512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crl_sha512.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/crt_cat_rsaexp-ec.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/crt_cat_rsaexp-ec.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dh.1000.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dh.1000.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dh.optlen.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dh.optlen.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dhparams.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dhparams.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir1/test-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir1/test-ca.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir2/test-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir2/test-ca.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir2/test-ca2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir2/test-ca2.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir3/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir3/Readme -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir3/test-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir3/test-ca.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir3/test-ca2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir3/test-ca2.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/Readme -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert11.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert11.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert12.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert12.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert13.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert13.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert14.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert14.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert21.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert21.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert22.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert22.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert23.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert23.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert31.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert31.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert32.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert32.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert33.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert33.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert34.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert34.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert41.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert41.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert42.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert42.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert43.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert43.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert44.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert44.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert45.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert45.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert51.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert51.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert52.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert52.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert53.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert53.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert54.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert54.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert61.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert61.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert62.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert62.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert63.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert63.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert71.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert71.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert72.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert72.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert73.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert73.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert74.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert74.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert81.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert81.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert82.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert82.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert83.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert83.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert91.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert91.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/dir4/cert92.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/dir4/cert92.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_224_prv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_224_prv.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_224_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_224_pub.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_256_prv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_256_prv.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_256_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_256_pub.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_384_prv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_384_prv.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_384_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_384_pub.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_521_prv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_521_prv.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_521_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_521_pub.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_bp256_prv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_bp256_prv.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_bp256_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_bp256_pub.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_bp384_prv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_bp384_prv.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_bp384_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_bp384_pub.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_bp512_prv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_bp512_prv.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_bp512_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_bp512_pub.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_prv.noopt.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_prv.noopt.der -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_prv.pk8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_prv.pk8.der -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_prv.pk8.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_prv.pk8.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_prv.pk8.pw.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_prv.pk8.pw.der -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_prv.pk8.pw.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_prv.pk8.pw.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_prv.sec1.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_prv.sec1.der -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_prv.sec1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_prv.sec1.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_prv.sec1.pw.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_prv.sec1.pw.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_prv.specdom.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_prv.specdom.der -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_pub.der -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/ec_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/ec_pub.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/enco-ca-prstr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/enco-ca-prstr.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/enco-cert-utf8str.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/enco-cert-utf8str.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/format_gen.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/format_gen.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/format_gen.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/format_gen.pub -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/format_pkcs12.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/format_pkcs12.fmt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/format_rsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/format_rsa.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/hash_file_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/hash_file_1 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/hash_file_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/hash_file_2 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/hash_file_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/hash_file_3 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/hash_file_4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/hash_file_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/hash_file_5 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/keyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/keyfile -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/keyfile.3des: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/keyfile.3des -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/keyfile.aes128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/keyfile.aes128 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/keyfile.aes192: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/keyfile.aes192 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/keyfile.aes256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/keyfile.aes256 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/keyfile.des: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/keyfile.des -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/mpi_10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/mpi_10 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/mpi_too_big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/mpi_too_big -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/passwd.psk: -------------------------------------------------------------------------------- 1 | Client_identity:6162636465666768696a6b6c6d6e6f70 2 | -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/pkcs8_pbe_sha1_2des.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/pkcs8_pbe_sha1_2des.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/pkcs8_pbe_sha1_3des.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/pkcs8_pbe_sha1_3des.der -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/pkcs8_pbe_sha1_3des.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/pkcs8_pbe_sha1_3des.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/rsa4096_prv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/rsa4096_prv.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/rsa4096_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/rsa4096_pub.pem -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1-nospace.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1-nospace.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1-v1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1-v1.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.cert_type.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.cert_type.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.ext_ku.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.ext_ku.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.key_usage.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.key_usage.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.pubkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.pubkey -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.req.cert_type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.req.cert_type -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.req.key_usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.req.key_usage -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.req.ku-ct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.req.ku-ct -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.req.md4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.req.md4 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.req.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.req.md5 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.req.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.req.sha1 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.req.sha224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.req.sha224 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.req.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.req.sha256 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.req.sha384: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.req.sha384 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.req.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.req.sha512 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1.v1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1.v1.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server10.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server10.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server1_ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server1_ca.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server2-badsign.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server2-badsign.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server2-v1-chain.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server2-v1-chain.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server2-v1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server2-v1.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server2.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server2.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server2.ku-ds.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server2.ku-ds.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server2.ku-ds_ke.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server2.ku-ds_ke.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server2.ku-ka.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server2.ku-ka.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server2.ku-ke.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server2.ku-ke.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server3.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server3.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server3.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server3.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server4.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server4.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server4.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server4.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5-badsign.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5-badsign.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5-expired.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5-expired.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5-future.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5-future.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5-selfsigned.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5-selfsigned.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5-sha1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5-sha1.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5-sha224.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5-sha224.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5-sha384.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5-sha384.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5-sha512.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5-sha512.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.eku-cli.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.eku-cli.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.eku-cs.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.eku-cs.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.eku-cs_any.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.eku-cs_any.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.eku-srv.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.eku-srv.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.ku-ds.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.ku-ds.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.ku-ka.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.ku-ka.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.ku-ke.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.ku-ke.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.req.ku.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.req.ku.sha1 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.req.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.req.sha1 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.req.sha224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.req.sha224 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.req.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.req.sha256 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.req.sha384: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.req.sha384 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server5.req.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server5.req.sha512 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server6-ss-child.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server6-ss-child.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server6.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server6.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server6.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server6.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server7.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server7.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server7.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server7.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server7_all_space.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server7_all_space.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server7_int-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server7_int-ca.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server7_int-ca_ca2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server7_int-ca_ca2.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server7_pem_space.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server7_pem_space.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server8.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server8.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server8.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server8.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server8_int-ca2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server8_int-ca2.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9-badsign.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9-badsign.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9-defaults.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9-defaults.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9-sha224.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9-sha224.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9-sha256.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9-sha256.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9-sha384.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9-sha384.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9-sha512.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9-sha512.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9-with-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9-with-ca.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9.req.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9.req.sha1 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9.req.sha224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9.req.sha224 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9.req.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9.req.sha256 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9.req.sha384: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9.req.sha384 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/server9.req.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/server9.req.sha512 -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-ca-v1.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-ca-v1.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-ca.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-ca.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-ca2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-ca2.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-ca2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-ca2.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-ca2.ku-crl.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-ca2.ku-crl.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-ca2.ku-crt.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-ca2.ku-crt.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-ca2.ku-ds.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-ca2.ku-ds.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-ca_cat12.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-ca_cat12.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-ca_cat21.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-ca_cat21.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-int-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-int-ca.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-int-ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-int-ca.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-int-ca2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-int-ca2.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-int-ca2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-int-ca2.key -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-int-ca3.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-int-ca3.crt -------------------------------------------------------------------------------- /src/mbedtls/tests/data_files/test-int-ca3.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/data_files/test-int-ca3.key -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/all.sh -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/check-doxy-blocks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/check-doxy-blocks.pl -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/check-generated-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/check-generated-files.sh -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/check-names.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/check-names.sh -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/curves.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/curves.pl -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/gen_ctr_drbg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/gen_ctr_drbg.pl -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/gen_gcm_decrypt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/gen_gcm_decrypt.pl -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/gen_gcm_encrypt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/gen_gcm_encrypt.pl -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/generate_code.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/generate_code.pl -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/key-exchanges.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/key-exchanges.pl -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/list-enum-consts.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/list-enum-consts.pl -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/list-identifiers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/list-identifiers.sh -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/list-macros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/list-macros.sh -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/list-symbols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/list-symbols.sh -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/recursion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/recursion.pl -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/run-test-suites.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/run-test-suites.pl -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/test-ref-configs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/test-ref-configs.pl -------------------------------------------------------------------------------- /src/mbedtls/tests/scripts/yotta-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/scripts/yotta-build.sh -------------------------------------------------------------------------------- /src/mbedtls/tests/ssl-opt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/ssl-opt.sh -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/helpers.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/helpers.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/main_test.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/main_test.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_aes.cbc.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_aes.cbc.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_aes.cfb.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_aes.cfb.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_aes.ecb.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_aes.ecb.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_aes.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_aes.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_aes.rest.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_aes.rest.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_arc4.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_arc4.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_arc4.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_arc4.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_asn1write.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_asn1write.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_base64.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_base64.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_base64.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_base64.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_blowfish.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_blowfish.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_camellia.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_camellia.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ccm.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ccm.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ccm.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ccm.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_cipher.aes.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_cipher.aes.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_cipher.ccm.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_cipher.ccm.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_cipher.des.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_cipher.des.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_cipher.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_cipher.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_cipher.gcm.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_cipher.gcm.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ctr_drbg.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ctr_drbg.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_debug.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_debug.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_debug.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_debug.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_des.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_des.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_des.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_des.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_dhm.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_dhm.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_dhm.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_dhm.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ecdh.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ecdh.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ecdh.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ecdh.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ecdsa.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ecdsa.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ecdsa.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ecdsa.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ecjpake.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ecjpake.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ecp.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ecp.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ecp.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ecp.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_entropy.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_entropy.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_error.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_error.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_error.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_error.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_gcm.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_gcm.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_md.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_md.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_md.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_md.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_mdx.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_mdx.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_mdx.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_mdx.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_mpi.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_mpi.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_mpi.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_mpi.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_pem.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_pem.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_pem.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_pem.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_pk.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_pk.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_pk.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_pk.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_pkcs1_v21.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_pkcs1_v21.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_pkcs5.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_pkcs5.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_pkcs5.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_pkcs5.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_pkparse.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_pkparse.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_pkwrite.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_pkwrite.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_rsa.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_rsa.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_rsa.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_rsa.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_shax.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_shax.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_shax.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_shax.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ssl.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ssl.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_ssl.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_ssl.function -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_version.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_version.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_x509parse.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_x509parse.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_x509write.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_x509write.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_xtea.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_xtea.data -------------------------------------------------------------------------------- /src/mbedtls/tests/suites/test_suite_xtea.function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/tests/suites/test_suite_xtea.function -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/aescrypt2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/aescrypt2.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/benchmark.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/benchmark.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/cert_app.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/cert_app.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/cert_req.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/cert_req.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/cert_write.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/cert_write.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/crl_app.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/crl_app.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/crypt_and_hash.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/crypt_and_hash.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/dh_client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/dh_client.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/dh_genprime.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/dh_genprime.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/dh_server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/dh_server.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/dtls_client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/dtls_client.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/dtls_server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/dtls_server.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/ecdsa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/ecdsa.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/gen_entropy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/gen_entropy.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/gen_key.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/gen_key.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/generic_sum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/generic_sum.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/hello.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/hello.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/key_app.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/key_app.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/key_app_writer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/key_app_writer.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/mbedTLS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/mbedTLS.sln -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/mbedTLS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/mbedTLS.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/md5sum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/md5sum.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/mini_client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/mini_client.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/mpi_demo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/mpi_demo.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/pem2der.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/pem2der.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/pk_decrypt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/pk_decrypt.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/pk_encrypt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/pk_encrypt.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/pk_sign.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/pk_sign.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/pk_verify.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/pk_verify.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/req_app.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/req_app.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/rsa_decrypt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/rsa_decrypt.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/rsa_encrypt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/rsa_encrypt.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/rsa_genkey.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/rsa_genkey.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/rsa_sign.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/rsa_sign.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/rsa_sign_pss.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/rsa_sign_pss.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/rsa_verify.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/rsa_verify.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/rsa_verify_pss.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/rsa_verify_pss.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/selftest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/selftest.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/sha1sum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/sha1sum.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/sha2sum.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/sha2sum.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/ssl_cert_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/ssl_cert_test.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/ssl_client1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/ssl_client1.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/ssl_client2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/ssl_client2.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/ssl_fork_server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/ssl_fork_server.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/ssl_mail_client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/ssl_mail_client.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/ssl_server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/ssl_server.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/ssl_server2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/ssl_server2.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/strerror.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/strerror.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/visualc/VS2010/udp_proxy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/visualc/VS2010/udp_proxy.vcxproj -------------------------------------------------------------------------------- /src/mbedtls/yotta/.gitignore: -------------------------------------------------------------------------------- 1 | module 2 | -------------------------------------------------------------------------------- /src/mbedtls/yotta/create-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/create-module.sh -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/README.md -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/adjust-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/adjust-config.sh -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/entropy_hardware_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/entropy_hardware_poll.c -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/example-authcrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/example-authcrypt/README.md -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/example-authcrypt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/example-authcrypt/main.cpp -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/example-benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/example-benchmark/README.md -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/example-benchmark/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/example-benchmark/main.cpp -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/example-hashing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/example-hashing/README.md -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/example-hashing/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/example-hashing/main.cpp -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/example-selftest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/example-selftest/README.md -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/example-selftest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/example-selftest/main.cpp -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/module.json -------------------------------------------------------------------------------- /src/mbedtls/yotta/data/target_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/mbedtls/yotta/data/target_config.h -------------------------------------------------------------------------------- /src/sc4/b58.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/sc4/b58.c -------------------------------------------------------------------------------- /src/sc4/b58.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/sc4/b58.h -------------------------------------------------------------------------------- /src/sc4/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/sc4/display.cpp -------------------------------------------------------------------------------- /src/sc4/hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/sc4/hardware.c -------------------------------------------------------------------------------- /src/sc4/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/sc4/hardware.h -------------------------------------------------------------------------------- /src/sc4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/sc4/main.c -------------------------------------------------------------------------------- /src/sc4/tweetnacl-aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/sc4/tweetnacl-aux.h -------------------------------------------------------------------------------- /src/sc4/tweetnacl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/sc4/tweetnacl.c -------------------------------------------------------------------------------- /src/sc4/tweetnacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/sc4/tweetnacl.h -------------------------------------------------------------------------------- /src/sc4/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/sc4/utils.c -------------------------------------------------------------------------------- /src/sc4/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/sc4/utils.h -------------------------------------------------------------------------------- /src/stm/Legacy/stm32_hal_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/Legacy/stm32_hal_legacy.h -------------------------------------------------------------------------------- /src/stm/cmsis_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/cmsis_gcc.h -------------------------------------------------------------------------------- /src/stm/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/core_cm4.h -------------------------------------------------------------------------------- /src/stm/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/core_cmFunc.h -------------------------------------------------------------------------------- /src/stm/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/core_cmInstr.h -------------------------------------------------------------------------------- /src/stm/core_cmSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/core_cmSimd.h -------------------------------------------------------------------------------- /src/stm/stm32f405xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f405xx.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_adc.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_adc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_adc_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_can.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_cec.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_cortex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_cortex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_cortex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_cortex.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_crc.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_cryp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_cryp.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_cryp_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_cryp_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_dac.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_dac_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_dac_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_dcmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_dcmi.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_dcmi_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_dcmi_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_def.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_dma.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_dma.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_dma2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_dma2d.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_dma_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_dma_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_dma_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_dma_ex.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_dsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_dsi.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_eth.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_flash.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_flash.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_flash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_flash_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_flash_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_flash_ex.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_flash_ramfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_flash_ramfunc.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_flash_ramfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_flash_ramfunc.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_fmpi2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_fmpi2c.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_fmpi2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_fmpi2c_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_gpio.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_gpio.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_gpio_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_gpio_ex.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_hash.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_hash_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_hash_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_hcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_hcd.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_i2c.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_i2c_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_i2c_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_i2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_i2s.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_i2s_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_i2s_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_irda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_irda.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_iwdg.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_lptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_lptim.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_ltdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_ltdc.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_ltdc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_ltdc_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_nand.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_nor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_nor.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_pccard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_pccard.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_pcd.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_pcd.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_pcd_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_pcd_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_pcd_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_pcd_ex.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_pwr.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_pwr.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_pwr_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_pwr_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_pwr_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_pwr_ex.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_qspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_qspi.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_rcc.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_rcc.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_rcc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_rcc_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_rcc_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_rcc_ex.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_rng.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_rng.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_rtc.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_rtc_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_rtc_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_sai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_sai.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_sai_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_sai_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_sd.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_sdram.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_smartcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_smartcard.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_spdifrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_spdifrx.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_spi.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_spi.h -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_sram.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_tim.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_tim_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_tim_ex.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_usart.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_hal_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_hal_wwdg.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_ll_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_ll_fmc.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_ll_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_ll_fsmc.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_ll_sdmmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_ll_sdmmc.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_ll_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_ll_usb.c -------------------------------------------------------------------------------- /src/stm/stm32f4xx_ll_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/stm32f4xx_ll_usb.h -------------------------------------------------------------------------------- /src/stm/system_stm32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/system_stm32f4xx.c -------------------------------------------------------------------------------- /src/stm/system_stm32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/system_stm32f4xx.h -------------------------------------------------------------------------------- /src/stm/usbd_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/usbd_cdc.c -------------------------------------------------------------------------------- /src/stm/usbd_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/usbd_cdc.h -------------------------------------------------------------------------------- /src/stm/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/usbd_core.c -------------------------------------------------------------------------------- /src/stm/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/usbd_core.h -------------------------------------------------------------------------------- /src/stm/usbd_ctlreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/usbd_ctlreq.c -------------------------------------------------------------------------------- /src/stm/usbd_ctlreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/usbd_ctlreq.h -------------------------------------------------------------------------------- /src/stm/usbd_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/usbd_def.h -------------------------------------------------------------------------------- /src/stm/usbd_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/usbd_hid.c -------------------------------------------------------------------------------- /src/stm/usbd_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/usbd_hid.h -------------------------------------------------------------------------------- /src/stm/usbd_ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/usbd_ioreq.c -------------------------------------------------------------------------------- /src/stm/usbd_ioreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stm/usbd_ioreq.h -------------------------------------------------------------------------------- /src/stubs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stubs/README.txt -------------------------------------------------------------------------------- /src/stubs/_cxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stubs/_cxx.cpp -------------------------------------------------------------------------------- /src/stubs/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stubs/_exit.c -------------------------------------------------------------------------------- /src/stubs/_sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stubs/_sbrk.c -------------------------------------------------------------------------------- /src/stubs/_startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stubs/_startup.c -------------------------------------------------------------------------------- /src/stubs/_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stubs/_syscalls.c -------------------------------------------------------------------------------- /src/stubs/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stubs/assert.c -------------------------------------------------------------------------------- /src/stubs/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/stubs/trace.h -------------------------------------------------------------------------------- /src/tinyscheme/opdefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/tinyscheme/opdefines.h -------------------------------------------------------------------------------- /src/tinyscheme/scheme-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/tinyscheme/scheme-private.h -------------------------------------------------------------------------------- /src/tinyscheme/scheme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/tinyscheme/scheme.c -------------------------------------------------------------------------------- /src/tinyscheme/scheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/tinyscheme/scheme.h -------------------------------------------------------------------------------- /src/u2f/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/endian.h -------------------------------------------------------------------------------- /src/u2f/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/keys.h -------------------------------------------------------------------------------- /src/u2f/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/list.h -------------------------------------------------------------------------------- /src/u2f/stm32_entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/stm32_entropy.c -------------------------------------------------------------------------------- /src/u2f/u2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/u2f.h -------------------------------------------------------------------------------- /src/u2f/u2f_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/u2f_hid.h -------------------------------------------------------------------------------- /src/u2f/u2f_messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/u2f_messages.c -------------------------------------------------------------------------------- /src/u2f/u2f_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/u2f_messages.h -------------------------------------------------------------------------------- /src/u2f/usbd_u2f_hid_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/usbd_u2f_hid_if.c -------------------------------------------------------------------------------- /src/u2f/usbd_u2f_hid_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/usbd_u2f_hid_if.h -------------------------------------------------------------------------------- /src/u2f/usbd_u2fhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/usbd_u2fhid.c -------------------------------------------------------------------------------- /src/u2f/usbd_u2fhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/src/u2f/usbd_u2fhid.h -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/dfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/tools/dfu.py -------------------------------------------------------------------------------- /tools/hsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/tools/hsm -------------------------------------------------------------------------------- /tools/hsm-hash.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/tools/hsm-hash.lisp -------------------------------------------------------------------------------- /tools/hsm-hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/tools/hsm-hash.py -------------------------------------------------------------------------------- /tools/term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spark-Innovations/sc4-hsm/HEAD/tools/term.c --------------------------------------------------------------------------------