├── .github ├── release.yml └── workflows │ ├── build-and-test.yml │ └── python-wheels.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── Cargo.toml ├── LICENSE.md ├── README.md ├── crypto ├── .cargo │ └── config.toml ├── Cargo.toml ├── lakers-crypto-cryptocell310-sys │ ├── Cargo.toml │ ├── build.rs │ ├── src │ │ ├── c │ │ │ └── wrapper.h │ │ └── lib.rs │ └── vendor │ │ └── nrf_cc310 │ │ ├── Doxyfile │ │ ├── Doxyfile.internal │ │ ├── common │ │ ├── integration_test_plat_defs.h │ │ ├── integration_test_plat_utils.c │ │ ├── integration_test_ssi_data.h │ │ └── integration_test_ssi_defs.h │ │ ├── include │ │ ├── ccsw_crys_rsa_shared_types.h │ │ ├── crys_aesccm.h │ │ ├── crys_aesccm_error.h │ │ ├── crys_chacha.h │ │ ├── crys_chacha_error.h │ │ ├── crys_chacha_poly.h │ │ ├── crys_chacha_poly_error.h │ │ ├── crys_common.h │ │ ├── crys_common_error.h │ │ ├── crys_dh.h │ │ ├── crys_dh_error.h │ │ ├── crys_dh_kg.h │ │ ├── crys_ec_edw_api.h │ │ ├── crys_ec_mont_api.h │ │ ├── crys_ec_mont_edw_error.h │ │ ├── crys_ecpki_build.h │ │ ├── crys_ecpki_dh.h │ │ ├── crys_ecpki_domain.h │ │ ├── crys_ecpki_ecdsa.h │ │ ├── crys_ecpki_error.h │ │ ├── crys_ecpki_kg.h │ │ ├── crys_ecpki_types.h │ │ ├── crys_error.h │ │ ├── crys_hash.h │ │ ├── crys_hash_defs.h │ │ ├── crys_hash_error.h │ │ ├── crys_hkdf.h │ │ ├── crys_hkdf_error.h │ │ ├── crys_hmac.h │ │ ├── crys_hmac_defs.h │ │ ├── crys_hmac_error.h │ │ ├── crys_kdf.h │ │ ├── crys_kdf_error.h │ │ ├── crys_pka_defs_hw.h │ │ ├── crys_poly.h │ │ ├── crys_poly_error.h │ │ ├── crys_rnd.h │ │ ├── crys_rnd_error.h │ │ ├── crys_rsa_build.h │ │ ├── crys_rsa_error.h │ │ ├── crys_rsa_kg.h │ │ ├── crys_rsa_prim.h │ │ ├── crys_rsa_schemes.h │ │ ├── crys_rsa_types.h │ │ ├── crys_srp.h │ │ ├── crys_srp_error.h │ │ ├── dx_reg_base_host.h │ │ ├── sns_silib.h │ │ ├── ssi_aes.h │ │ ├── ssi_aes_defs.h │ │ ├── ssi_aes_error.h │ │ ├── ssi_bitops.h │ │ ├── ssi_pal_abort.h │ │ ├── ssi_pal_barrier.h │ │ ├── ssi_pal_compiler.h │ │ ├── ssi_pal_dma.h │ │ ├── ssi_pal_dma_defs.h │ │ ├── ssi_pal_dma_plat.h │ │ ├── ssi_pal_error.h │ │ ├── ssi_pal_file.h │ │ ├── ssi_pal_file_plat.h │ │ ├── ssi_pal_fips.h │ │ ├── ssi_pal_init.h │ │ ├── ssi_pal_list.h │ │ ├── ssi_pal_log.h │ │ ├── ssi_pal_mem.h │ │ ├── ssi_pal_memmap.h │ │ ├── ssi_pal_mutex.h │ │ ├── ssi_pal_mutex_plat.h │ │ ├── ssi_pal_perf.h │ │ ├── ssi_pal_perf_plat.h │ │ ├── ssi_pal_sem.h │ │ ├── ssi_pal_sem_plat.h │ │ ├── ssi_pal_trng.h │ │ ├── ssi_pal_types.h │ │ ├── ssi_pal_types_plat.h │ │ ├── ssi_pka_hw_plat_defs.h │ │ ├── ssi_regs.h │ │ ├── ssi_sram_map.h │ │ ├── ssi_util_defs.h │ │ ├── ssi_util_error.h │ │ ├── ssi_util_key_derivation.h │ │ └── ssi_util_key_derivation_defs.h │ │ ├── lib │ │ ├── cortex-m4 │ │ │ ├── hard-float │ │ │ │ ├── libnrf_cc310_0.9.13.a │ │ │ │ ├── no-interrupts │ │ │ │ │ └── libnrf_cc310_0.9.13.a │ │ │ │ └── short-wchar │ │ │ │ │ ├── libnrf_cc310_0.9.13.a │ │ │ │ │ ├── no-interrupts │ │ │ │ │ ├── libnrf_cc310_0.9.13.a │ │ │ │ │ └── nrf_cc310_0.9.13.lib │ │ │ │ │ └── nrf_cc310_0.9.13.lib │ │ │ └── soft-float │ │ │ │ ├── libnrf_cc310_0.9.13.a │ │ │ │ ├── no-interrupts │ │ │ │ └── libnrf_cc310_0.9.13.a │ │ │ │ └── short-wchar │ │ │ │ ├── libnrf_cc310_0.9.13.a │ │ │ │ ├── no-interrupts │ │ │ │ ├── libnrf_cc310_0.9.13.a │ │ │ │ └── nrf_cc310_0.9.13.lib │ │ │ │ └── nrf_cc310_0.9.13.lib │ │ └── license.txt │ │ └── license.txt ├── lakers-crypto-psa │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── lakers-crypto-rustcrypto │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── src │ └── lib.rs ├── ead └── lakers-ead-authz │ ├── Cargo.toml │ ├── cbindgen.toml │ └── src │ ├── authenticator.rs │ ├── device.rs │ ├── lib.rs │ ├── server.rs │ ├── shared.rs │ └── test_vectors.rs ├── examples ├── coap │ ├── Cargo.toml │ └── src │ │ └── bin │ │ ├── coapclient.rs │ │ ├── coapserver-coaphandler.rs │ │ └── coapserver.rs ├── coapclient.rs.rust ├── lakers-c-native │ ├── .gitignore │ ├── Makefile │ ├── README.md │ └── main.c ├── lakers-c-riot │ ├── .gitignore │ ├── Makefile │ ├── README.md │ └── main.c ├── lakers-no_std │ ├── .cargo │ │ └── config.toml │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── memory.x │ ├── rust-toolchain │ └── src │ │ └── main.rs ├── lakers-nrf52840 │ ├── .cargo │ │ └── config.toml │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── memory.x │ └── src │ │ └── bin │ │ ├── common.rs │ │ ├── initiator.rs │ │ └── responder.rs └── traces-zeroconf.ipynb ├── lakers-c ├── Cargo.toml ├── README.md ├── build.sh ├── cbindgen.toml └── src │ ├── ead_authz.rs │ ├── initiator.rs │ └── lib.rs ├── lakers-python ├── Cargo.toml ├── README.md ├── doc │ ├── conf.py │ └── index.rst ├── pyproject.toml ├── src │ ├── ead_authz │ │ ├── authenticator.rs │ │ ├── device.rs │ │ ├── mod.rs │ │ └── server.rs │ ├── initiator.rs │ ├── lib.rs │ └── responder.rs ├── test │ ├── test_ead_authz.py │ ├── test_lakers.py │ └── test_reprs.py └── test_requirements.txt ├── lib ├── Cargo.toml ├── README.md └── src │ ├── edhoc.rs │ └── lib.rs ├── rust-toolchain └── shared ├── Cargo.toml ├── README.md ├── cbindgen.toml └── src ├── buffer.rs ├── cred.rs ├── crypto.rs ├── lib.rs └── python_bindings.rs /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/python-wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/.github/workflows/python-wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | lib/README.md -------------------------------------------------------------------------------- /crypto/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/.cargo/config.toml -------------------------------------------------------------------------------- /crypto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/Cargo.toml -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/Cargo.toml -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/build.rs -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/src/c/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/src/c/wrapper.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/src/lib.rs -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/Doxyfile -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/Doxyfile.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/Doxyfile.internal -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/common/integration_test_plat_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/common/integration_test_plat_defs.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/common/integration_test_plat_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/common/integration_test_plat_utils.c -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/common/integration_test_ssi_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/common/integration_test_ssi_data.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/common/integration_test_ssi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/common/integration_test_ssi_defs.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ccsw_crys_rsa_shared_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ccsw_crys_rsa_shared_types.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_aesccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_aesccm.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_aesccm_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_aesccm_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_chacha.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_chacha_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_chacha_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_chacha_poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_chacha_poly.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_chacha_poly_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_chacha_poly_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_common.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_common_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_common_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_dh.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_dh_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_dh_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_dh_kg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_dh_kg.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ec_edw_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ec_edw_api.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ec_mont_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ec_mont_api.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ec_mont_edw_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ec_mont_edw_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_build.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_dh.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_domain.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_ecdsa.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_kg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_kg.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_ecpki_types.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hash.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hash_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hash_defs.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hash_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hash_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hkdf.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hkdf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hkdf_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hmac.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hmac_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hmac_defs.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hmac_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_hmac_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_kdf.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_kdf_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_kdf_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_pka_defs_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_pka_defs_hw.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_poly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_poly.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_poly_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_poly_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rnd.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rnd_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rnd_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_build.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_kg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_kg.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_prim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_prim.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_schemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_schemes.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_rsa_types.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_srp.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_srp_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/crys_srp_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/dx_reg_base_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/dx_reg_base_host.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/sns_silib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/sns_silib.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_aes.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_aes_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_aes_defs.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_aes_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_aes_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_bitops.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_abort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_abort.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_barrier.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_compiler.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_dma.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_dma_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_dma_defs.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_dma_plat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_dma_plat.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_file.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_file_plat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_file_plat.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_fips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_fips.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_init.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_list.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_log.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_mem.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_memmap.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_mutex.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_mutex_plat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_mutex_plat.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_perf.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_perf_plat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_perf_plat.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_sem.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_sem_plat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_sem_plat.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_trng.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_types.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_types_plat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pal_types_plat.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pka_hw_plat_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_pka_hw_plat_defs.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_regs.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_sram_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_sram_map.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_util_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_util_defs.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_util_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_util_error.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_util_key_derivation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_util_key_derivation.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_util_key_derivation_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/include/ssi_util_key_derivation_defs.h -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/libnrf_cc310_0.9.13.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/libnrf_cc310_0.9.13.a -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/no-interrupts/libnrf_cc310_0.9.13.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/no-interrupts/libnrf_cc310_0.9.13.a -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/short-wchar/libnrf_cc310_0.9.13.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/short-wchar/libnrf_cc310_0.9.13.a -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/short-wchar/no-interrupts/libnrf_cc310_0.9.13.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/short-wchar/no-interrupts/libnrf_cc310_0.9.13.a -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/short-wchar/no-interrupts/nrf_cc310_0.9.13.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/short-wchar/no-interrupts/nrf_cc310_0.9.13.lib -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/short-wchar/nrf_cc310_0.9.13.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/hard-float/short-wchar/nrf_cc310_0.9.13.lib -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/libnrf_cc310_0.9.13.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/libnrf_cc310_0.9.13.a -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/no-interrupts/libnrf_cc310_0.9.13.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/no-interrupts/libnrf_cc310_0.9.13.a -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/short-wchar/libnrf_cc310_0.9.13.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/short-wchar/libnrf_cc310_0.9.13.a -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/short-wchar/no-interrupts/libnrf_cc310_0.9.13.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/short-wchar/no-interrupts/libnrf_cc310_0.9.13.a -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/short-wchar/no-interrupts/nrf_cc310_0.9.13.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/short-wchar/no-interrupts/nrf_cc310_0.9.13.lib -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/short-wchar/nrf_cc310_0.9.13.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/cortex-m4/soft-float/short-wchar/nrf_cc310_0.9.13.lib -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/lib/license.txt -------------------------------------------------------------------------------- /crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-cryptocell310-sys/vendor/nrf_cc310/license.txt -------------------------------------------------------------------------------- /crypto/lakers-crypto-psa/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-psa/Cargo.toml -------------------------------------------------------------------------------- /crypto/lakers-crypto-psa/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-psa/src/lib.rs -------------------------------------------------------------------------------- /crypto/lakers-crypto-rustcrypto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-rustcrypto/Cargo.toml -------------------------------------------------------------------------------- /crypto/lakers-crypto-rustcrypto/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/lakers-crypto-rustcrypto/src/lib.rs -------------------------------------------------------------------------------- /crypto/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/crypto/src/lib.rs -------------------------------------------------------------------------------- /ead/lakers-ead-authz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/ead/lakers-ead-authz/Cargo.toml -------------------------------------------------------------------------------- /ead/lakers-ead-authz/cbindgen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/ead/lakers-ead-authz/cbindgen.toml -------------------------------------------------------------------------------- /ead/lakers-ead-authz/src/authenticator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/ead/lakers-ead-authz/src/authenticator.rs -------------------------------------------------------------------------------- /ead/lakers-ead-authz/src/device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/ead/lakers-ead-authz/src/device.rs -------------------------------------------------------------------------------- /ead/lakers-ead-authz/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/ead/lakers-ead-authz/src/lib.rs -------------------------------------------------------------------------------- /ead/lakers-ead-authz/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/ead/lakers-ead-authz/src/server.rs -------------------------------------------------------------------------------- /ead/lakers-ead-authz/src/shared.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/ead/lakers-ead-authz/src/shared.rs -------------------------------------------------------------------------------- /ead/lakers-ead-authz/src/test_vectors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/ead/lakers-ead-authz/src/test_vectors.rs -------------------------------------------------------------------------------- /examples/coap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/coap/Cargo.toml -------------------------------------------------------------------------------- /examples/coap/src/bin/coapclient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/coap/src/bin/coapclient.rs -------------------------------------------------------------------------------- /examples/coap/src/bin/coapserver-coaphandler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/coap/src/bin/coapserver-coaphandler.rs -------------------------------------------------------------------------------- /examples/coap/src/bin/coapserver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/coap/src/bin/coapserver.rs -------------------------------------------------------------------------------- /examples/coapclient.rs.rust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/coapclient.rs.rust -------------------------------------------------------------------------------- /examples/lakers-c-native/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-c-native/.gitignore -------------------------------------------------------------------------------- /examples/lakers-c-native/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-c-native/Makefile -------------------------------------------------------------------------------- /examples/lakers-c-native/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-c-native/README.md -------------------------------------------------------------------------------- /examples/lakers-c-native/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-c-native/main.c -------------------------------------------------------------------------------- /examples/lakers-c-riot/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | -------------------------------------------------------------------------------- /examples/lakers-c-riot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-c-riot/Makefile -------------------------------------------------------------------------------- /examples/lakers-c-riot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-c-riot/README.md -------------------------------------------------------------------------------- /examples/lakers-c-riot/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-c-riot/main.c -------------------------------------------------------------------------------- /examples/lakers-no_std/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-no_std/.cargo/config.toml -------------------------------------------------------------------------------- /examples/lakers-no_std/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-no_std/Cargo.toml -------------------------------------------------------------------------------- /examples/lakers-no_std/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-no_std/README.md -------------------------------------------------------------------------------- /examples/lakers-no_std/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-no_std/build.rs -------------------------------------------------------------------------------- /examples/lakers-no_std/memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-no_std/memory.x -------------------------------------------------------------------------------- /examples/lakers-no_std/rust-toolchain: -------------------------------------------------------------------------------- 1 | ../../rust-toolchain -------------------------------------------------------------------------------- /examples/lakers-no_std/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-no_std/src/main.rs -------------------------------------------------------------------------------- /examples/lakers-nrf52840/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-nrf52840/.cargo/config.toml -------------------------------------------------------------------------------- /examples/lakers-nrf52840/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-nrf52840/Cargo.toml -------------------------------------------------------------------------------- /examples/lakers-nrf52840/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-nrf52840/README.md -------------------------------------------------------------------------------- /examples/lakers-nrf52840/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-nrf52840/build.rs -------------------------------------------------------------------------------- /examples/lakers-nrf52840/memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-nrf52840/memory.x -------------------------------------------------------------------------------- /examples/lakers-nrf52840/src/bin/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-nrf52840/src/bin/common.rs -------------------------------------------------------------------------------- /examples/lakers-nrf52840/src/bin/initiator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-nrf52840/src/bin/initiator.rs -------------------------------------------------------------------------------- /examples/lakers-nrf52840/src/bin/responder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/lakers-nrf52840/src/bin/responder.rs -------------------------------------------------------------------------------- /examples/traces-zeroconf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/examples/traces-zeroconf.ipynb -------------------------------------------------------------------------------- /lakers-c/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-c/Cargo.toml -------------------------------------------------------------------------------- /lakers-c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-c/README.md -------------------------------------------------------------------------------- /lakers-c/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-c/build.sh -------------------------------------------------------------------------------- /lakers-c/cbindgen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-c/cbindgen.toml -------------------------------------------------------------------------------- /lakers-c/src/ead_authz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-c/src/ead_authz.rs -------------------------------------------------------------------------------- /lakers-c/src/initiator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-c/src/initiator.rs -------------------------------------------------------------------------------- /lakers-c/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-c/src/lib.rs -------------------------------------------------------------------------------- /lakers-python/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/Cargo.toml -------------------------------------------------------------------------------- /lakers-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/README.md -------------------------------------------------------------------------------- /lakers-python/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/doc/conf.py -------------------------------------------------------------------------------- /lakers-python/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/doc/index.rst -------------------------------------------------------------------------------- /lakers-python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/pyproject.toml -------------------------------------------------------------------------------- /lakers-python/src/ead_authz/authenticator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/src/ead_authz/authenticator.rs -------------------------------------------------------------------------------- /lakers-python/src/ead_authz/device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/src/ead_authz/device.rs -------------------------------------------------------------------------------- /lakers-python/src/ead_authz/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/src/ead_authz/mod.rs -------------------------------------------------------------------------------- /lakers-python/src/ead_authz/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/src/ead_authz/server.rs -------------------------------------------------------------------------------- /lakers-python/src/initiator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/src/initiator.rs -------------------------------------------------------------------------------- /lakers-python/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/src/lib.rs -------------------------------------------------------------------------------- /lakers-python/src/responder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/src/responder.rs -------------------------------------------------------------------------------- /lakers-python/test/test_ead_authz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/test/test_ead_authz.py -------------------------------------------------------------------------------- /lakers-python/test/test_lakers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/test/test_lakers.py -------------------------------------------------------------------------------- /lakers-python/test/test_reprs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lakers-python/test/test_reprs.py -------------------------------------------------------------------------------- /lakers-python/test_requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | cbor2 -------------------------------------------------------------------------------- /lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lib/Cargo.toml -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/src/edhoc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lib/src/edhoc.rs -------------------------------------------------------------------------------- /lib/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/lib/src/lib.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly-2025-05-10 2 | -------------------------------------------------------------------------------- /shared/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/shared/Cargo.toml -------------------------------------------------------------------------------- /shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/shared/README.md -------------------------------------------------------------------------------- /shared/cbindgen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/shared/cbindgen.toml -------------------------------------------------------------------------------- /shared/src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/shared/src/buffer.rs -------------------------------------------------------------------------------- /shared/src/cred.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/shared/src/cred.rs -------------------------------------------------------------------------------- /shared/src/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/shared/src/crypto.rs -------------------------------------------------------------------------------- /shared/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/shared/src/lib.rs -------------------------------------------------------------------------------- /shared/src/python_bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lake-rs/lakers/HEAD/shared/src/python_bindings.rs --------------------------------------------------------------------------------