├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── Readme.md ├── app ├── Cargo.lock ├── Cargo.toml ├── build.rs └── src │ ├── attestation.rs │ ├── contract_input.rs │ ├── contract_output.rs │ └── main.rs ├── bin └── .keep ├── client ├── Gemfile ├── Gemfile.lock └── console.rb ├── docs ├── sgx.md └── static │ └── web3 foundation_grants_badge_black.svg ├── enclave ├── AttestationReportSigningCACert.pem ├── Cargo.lock ├── Cargo.toml ├── Enclave.config.xml ├── Enclave.edl ├── Enclave.lds ├── Enclave_private.pem ├── Makefile ├── Xargo.toml ├── src │ ├── cert.rs │ ├── contracts │ │ ├── assets.rs │ │ ├── balance.rs │ │ ├── data_plaza.rs │ │ └── mod.rs │ ├── cryptography │ │ ├── aead.rs │ │ ├── ecdh.rs │ │ └── mod.rs │ ├── hex.rs │ ├── lib.rs │ ├── light_validation │ │ ├── error.rs │ │ ├── justification.rs │ │ ├── mod.rs │ │ ├── storage_proof.rs │ │ └── wasm_hacks.rs │ └── types.rs └── x86_64-unknown-linux-sgx.json ├── lib └── .keep ├── memchr-nostd ├── .github │ └── workflows │ │ └── ci.yml ├── .gitignore ├── COPYING ├── Cargo.toml ├── LICENSE-MIT ├── README.md ├── UNLICENSE ├── bench │ ├── Cargo.toml │ ├── data │ │ ├── sherlock-holmes-huge.txt │ │ ├── sherlock-holmes-small.txt │ │ └── sherlock-holmes-tiny.txt │ └── src │ │ ├── bench.rs │ │ ├── imp.rs │ │ ├── inputs.rs │ │ └── lib.rs ├── build.rs ├── rustfmt.toml └── src │ ├── c.rs │ ├── fallback.rs │ ├── iter.rs │ ├── lib.rs │ ├── naive.rs │ ├── tests │ ├── iter.rs │ ├── memchr.rs │ ├── miri.rs │ └── mod.rs │ └── x86 │ ├── avx.rs │ ├── mod.rs │ ├── sse2.rs │ └── sse42.rs ├── rust-toolchain ├── scripts ├── console.sh ├── dataset.csv ├── gen_dataset.py └── query.csv └── vendor ├── bitvec ├── .drone.yml ├── .editorconfig ├── .github │ └── pull.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS.txt ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── Justfile ├── LICENSE.txt ├── README.md ├── ROADMAP.md ├── Xargo.toml ├── benches │ ├── macros.rs │ └── slice.rs ├── doc │ ├── Atomicity.md │ └── Bit Patterns.md ├── examples │ ├── sieve.rs │ └── tour.rs ├── sgx │ └── bitvec-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── cursor.rs │ │ │ ├── domain.rs │ │ │ ├── lib.rs │ │ │ ├── macros.rs │ │ │ ├── pointer.rs │ │ │ ├── serdes.rs │ │ │ └── store.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ ├── lib │ │ └── readme.txt │ │ └── make_pub.diff ├── src │ ├── atomic.rs │ ├── bits.rs │ ├── boxed.rs │ ├── cursor.rs │ ├── domain.rs │ ├── lib.rs │ ├── macros.rs │ ├── pointer.rs │ ├── prelude.rs │ ├── serdes.rs │ ├── slice.rs │ ├── store.rs │ └── vec.rs ├── tests │ ├── issue_10.rs │ ├── issue_15.rs │ ├── readme.rs │ └── serdes.rs └── x86_64-unknown-linux-sgx.json ├── byte-slice-cast ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── sgx │ └── byte-slice-cast-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── lib.rs │ │ │ └── tests.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt └── src │ └── lib.rs ├── byteorder ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── COPYING ├── Cargo.toml ├── LICENSE-MIT ├── README.md ├── UNLICENSE ├── benches │ └── bench.rs ├── build.rs ├── ci │ └── script.sh ├── sgx │ └── byteorder-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── lib.rs │ │ │ ├── stdtests.rs │ │ │ └── tests.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt └── src │ ├── io.rs │ └── lib.rs ├── chrono ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── AUTHORS.txt ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE.txt ├── Makefile ├── README.md ├── appveyor.yml ├── ci │ ├── fix-readme.sh │ └── travis.sh └── src │ ├── date.rs │ ├── datetime.rs │ ├── div.rs │ ├── format │ ├── mod.rs │ ├── parse.rs │ ├── parsed.rs │ ├── scan.rs │ └── strftime.rs │ ├── lib.rs │ ├── naive │ ├── date.rs │ ├── datetime.rs │ ├── internals.rs │ ├── isoweek.rs │ └── time.rs │ ├── offset │ ├── fixed.rs │ ├── local.rs │ ├── mod.rs │ └── utc.rs │ ├── oldtime.rs │ └── round.rs ├── cryptocorrosion ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── README.md ├── block-ciphers │ └── threefish │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── benches │ │ └── lib.rs │ │ └── src │ │ ├── consts.rs │ │ └── lib.rs ├── ci │ ├── before_deploy.ps1 │ ├── before_deploy.sh │ ├── install.sh │ └── script.sh ├── hashes │ ├── blake │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── benches │ │ │ ├── blake256.rs │ │ │ ├── blake512.rs │ │ │ └── machine.rs │ │ ├── src │ │ │ ├── consts.rs │ │ │ └── lib.rs │ │ └── tests │ │ │ ├── data │ │ │ ├── LongMsgKAT_224.blb │ │ │ ├── LongMsgKAT_256.blb │ │ │ ├── LongMsgKAT_384.blb │ │ │ ├── LongMsgKAT_512.blb │ │ │ ├── ShortMsgKAT_224.blb │ │ │ ├── ShortMsgKAT_256.blb │ │ │ ├── ShortMsgKAT_384.blb │ │ │ ├── ShortMsgKAT_512.blb │ │ │ ├── blake224.blb │ │ │ ├── blake256.blb │ │ │ ├── blake384.blb │ │ │ ├── blake512.blb │ │ │ ├── groestl224.blb │ │ │ ├── groestl256.blb │ │ │ ├── groestl384.blb │ │ │ ├── groestl512.blb │ │ │ ├── skein1024_32.blb │ │ │ ├── skein1024_64.blb │ │ │ ├── skein256_32.blb │ │ │ ├── skein256_64.blb │ │ │ ├── skein512_32.blb │ │ │ └── skein512_64.blb │ │ │ └── lib.rs │ ├── groestl │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── benches │ │ │ ├── groestl256.rs │ │ │ └── groestl512.rs │ │ ├── src │ │ │ ├── compressor.rs │ │ │ └── lib.rs │ │ └── tests │ │ │ ├── data │ │ │ ├── groestl224.blb │ │ │ ├── groestl256.blb │ │ │ ├── groestl384.blb │ │ │ └── groestl512.blb │ │ │ └── lib.rs │ ├── jh │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── benches │ │ │ ├── digest_bench.rs │ │ │ └── machine.rs │ │ ├── src │ │ │ ├── compressor.rs │ │ │ ├── consts.rs │ │ │ └── lib.rs │ │ └── tests │ │ │ ├── data │ │ │ ├── LongMsgKAT_224.blb │ │ │ ├── LongMsgKAT_256.blb │ │ │ ├── LongMsgKAT_384.blb │ │ │ ├── LongMsgKAT_512.blb │ │ │ ├── ShortMsgKAT_224.blb │ │ │ ├── ShortMsgKAT_256.blb │ │ │ ├── ShortMsgKAT_384.blb │ │ │ └── ShortMsgKAT_512.blb │ │ │ └── lib.rs │ └── skein │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── benches │ │ ├── skein1024.rs │ │ ├── skein256.rs │ │ └── skein512.rs │ │ ├── src │ │ └── lib.rs │ │ └── tests │ │ ├── data │ │ ├── skein1024_32.blb │ │ ├── skein1024_64.blb │ │ ├── skein256_32.blb │ │ ├── skein256_64.blb │ │ ├── skein512_32.blb │ │ └── skein512_64.blb │ │ └── lib.rs ├── sgx │ ├── Cargo.toml │ └── cryptocorrosion-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── drone │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── blake_test.rs │ │ │ ├── chacha_impl.rs │ │ │ ├── data │ │ │ ├── groestl_digesttest.rs │ │ │ ├── groestl_test.rs │ │ │ ├── jh_tests.rs │ │ │ ├── lib.rs │ │ │ ├── ppv_lite86_sse2.rs │ │ │ ├── skein_tests.rs │ │ │ └── threefish_test.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── stream-ciphers │ └── chacha │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── benches │ │ └── chacha20.rs │ │ └── src │ │ ├── guts.rs │ │ ├── lib.rs │ │ └── rustcrypto_impl.rs ├── test_alt_simd.sh ├── test_stable.sh └── utils-simd │ ├── crypto-simd │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ └── lib.rs │ ├── ppv-lite86 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ ├── generic.rs │ │ ├── lib.rs │ │ ├── soft.rs │ │ ├── types.rs │ │ └── x86_64 │ │ ├── mod.rs │ │ └── sse2.rs │ └── ppv-null │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ └── lib.rs ├── getrandom ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── appveyor.yml ├── benches │ └── mod.rs ├── build.rs ├── sgx │ └── getrandom-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── lib.rs │ │ │ └── tests.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ ├── cloudabi.rs │ ├── dummy.rs │ ├── error.rs │ ├── error_impls.rs │ ├── freebsd.rs │ ├── fuchsia.rs │ ├── ios.rs │ ├── lib.rs │ ├── linux_android.rs │ ├── macos.rs │ ├── mesalock_sgx.rs │ ├── openbsd.rs │ ├── rdrand.rs │ ├── solaris_illumos.rs │ ├── use_file.rs │ ├── util.rs │ ├── util_libc.rs │ ├── wasi.rs │ ├── wasm32_bindgen.rs │ ├── wasm32_stdweb.rs │ ├── windows.rs │ └── windows_uwp.rs ├── tests │ ├── mod.rs │ └── wasm_bindgen │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs └── utils │ └── ci │ ├── install.sh │ ├── install_cargo_web.sh │ └── script.sh ├── hmac-drbg ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── sgx │ └── hmac-drbg-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── fixtures │ │ │ ├── hmac_drbg_tests.rs │ │ │ └── lib.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ └── lib.rs └── tests │ ├── fixtures │ └── hmac-drbg-nist.json │ └── lib.rs ├── indexmap ├── .drone.yml ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── 1-problem.md │ │ ├── 2-suggestion.md │ │ ├── 3-documentation.md │ │ ├── 4-discussion.md │ │ └── 5-other.md │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.rst ├── benches │ ├── bench.rs │ └── faststring.rs ├── build.rs ├── sgx │ └── indexmap-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── equivalent_trait.rs │ │ │ ├── lib.rs │ │ │ ├── map.rs │ │ │ ├── serde.rs │ │ │ ├── set.rs │ │ │ ├── tests.rs │ │ │ └── util.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ ├── equivalent.rs │ ├── lib.rs │ ├── macros.rs │ ├── map.rs │ ├── mutable_keys.rs │ ├── rayon │ │ ├── map.rs │ │ ├── mod.rs │ │ └── set.rs │ ├── serde.rs │ ├── set.rs │ └── util.rs ├── test-nostd │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── tests │ ├── equivalent_trait.rs │ ├── macros_full_path.rs │ ├── quick.rs │ ├── serde.rs │ └── tests.rs ├── itoa ├── .drone.yml ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── 1-problem.md │ │ ├── 2-suggestion.md │ │ ├── 3-documentation.md │ │ ├── 4-discussion.md │ │ └── 5-other.md │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches │ └── bench.rs ├── performance.png ├── sgx │ └── itoa-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ └── lib.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ ├── lib.rs │ └── udiv128.rs └── tests │ └── test.rs ├── libsecp256k1 ├── .arcconfig ├── .drone.yml ├── .editorconfig ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── Xargo.toml ├── benches │ ├── public_key.rs │ ├── sign.rs │ └── signature.rs ├── gen │ ├── ecmult │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ └── genmult │ │ ├── Cargo.toml │ │ └── src │ │ └── main.rs ├── shell.nix ├── src │ ├── der.rs │ ├── ecdh.rs │ ├── ecdsa.rs │ ├── ecmult │ │ ├── const.rs │ │ ├── const_gen.rs │ │ └── mod.rs │ ├── error.rs │ ├── field.rs │ ├── group.rs │ ├── lib.rs │ └── scalar.rs ├── tests │ └── verify.rs └── x86_64-unknown-linux-sgx.json ├── log ├── .drone.yml ├── .github │ ├── pull.yml │ └── workflows │ │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── build.rs ├── rfcs │ └── 0296-structured-logging.md ├── sgx │ ├── log-max-level-sgx-test │ │ ├── Makefile │ │ ├── app │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── bin │ │ │ └── readme.txt │ │ ├── common │ │ │ └── inc │ │ │ │ ├── assert.h │ │ │ │ ├── complex.h │ │ │ │ ├── ctype.h │ │ │ │ ├── dirent.h │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── float.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── iso646.h │ │ │ │ ├── limits.h │ │ │ │ ├── math.h │ │ │ │ ├── mbusafecrt.h │ │ │ │ ├── poll.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── sys │ │ │ │ ├── _types.h │ │ │ │ ├── cdefs.h │ │ │ │ ├── endian.h │ │ │ │ ├── epoll.h │ │ │ │ ├── ieee.h │ │ │ │ ├── limits.h │ │ │ │ ├── sockaddr.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── struct_timespec.h │ │ │ │ ├── types.h │ │ │ │ └── uio.h │ │ │ │ ├── time.h │ │ │ │ ├── unistd.h │ │ │ │ ├── wchar.h │ │ │ │ └── wctype.h │ │ ├── edl │ │ │ ├── inc │ │ │ │ ├── dirent.h │ │ │ │ └── stat.h │ │ │ ├── sgx_asyncio.edl │ │ │ ├── sgx_backtrace.edl │ │ │ ├── sgx_env.edl │ │ │ ├── sgx_fd.edl │ │ │ ├── sgx_file.edl │ │ │ ├── sgx_fs.edl │ │ │ ├── sgx_mem.edl │ │ │ ├── sgx_net.edl │ │ │ ├── sgx_net_switchless.edl │ │ │ ├── sgx_pipe.edl │ │ │ ├── sgx_socket.edl │ │ │ ├── sgx_stdio.edl │ │ │ ├── sgx_sys.edl │ │ │ ├── sgx_time.edl │ │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ │ ├── Cargo.toml │ │ │ ├── Enclave.config.xml │ │ │ ├── Enclave.edl │ │ │ ├── Enclave.lds │ │ │ ├── Enclave_private.pem │ │ │ ├── Makefile │ │ │ ├── Xargo.toml │ │ │ ├── src │ │ │ │ ├── lib.rs │ │ │ │ └── max.rs │ │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ │ └── readme.txt │ └── log-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── filters.rs │ │ │ ├── kv.rs │ │ │ ├── lib.rs │ │ │ ├── max.rs │ │ │ └── tests.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ ├── kv │ │ ├── error.rs │ │ ├── key.rs │ │ ├── mod.rs │ │ ├── source.rs │ │ └── value │ │ │ ├── impls.rs │ │ │ ├── internal.rs │ │ │ ├── mod.rs │ │ │ └── test.rs │ ├── lib.rs │ ├── macros.rs │ └── serde.rs ├── test_max_level_features │ ├── Cargo.toml │ └── main.rs └── tests │ └── filters.rs ├── num-bigint ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── RELEASES.md ├── benches │ ├── bigint.rs │ ├── factorial.rs │ ├── gcd.rs │ ├── roots.rs │ └── shootout-pidigits.rs ├── bors.toml ├── build.rs ├── ci │ ├── rustup.sh │ └── test_full.sh ├── sgx │ └── num-bigint-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── lib.rs │ │ │ └── tests │ │ │ │ ├── bigint.rs │ │ │ │ ├── bigint_bitwise.rs │ │ │ │ ├── bigint_scalar.rs │ │ │ │ ├── biguint.rs │ │ │ │ ├── biguint_scalar.rs │ │ │ │ ├── consts │ │ │ │ └── mod.rs │ │ │ │ ├── macros │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── modpow.rs │ │ │ │ ├── rand.rs │ │ │ │ ├── roots.rs │ │ │ │ ├── serde.rs │ │ │ │ └── torture.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ ├── algorithms.rs │ ├── bigint.rs │ ├── bigrand.rs │ ├── biguint.rs │ ├── lib.rs │ ├── macros.rs │ └── monty.rs └── tests │ ├── bigint.rs │ ├── bigint_bitwise.rs │ ├── bigint_scalar.rs │ ├── biguint.rs │ ├── biguint_scalar.rs │ ├── consts │ └── mod.rs │ ├── macros │ └── mod.rs │ ├── modpow.rs │ ├── quickcheck.rs │ ├── rand.rs │ ├── roots.rs │ ├── serde.rs │ └── torture.rs ├── num-integer ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── RELEASES.md ├── benches │ ├── gcd.rs │ └── roots.rs ├── bors.toml ├── build.rs ├── ci │ ├── rustup.sh │ └── test_full.sh ├── sgx │ └── num-integer-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── lib.rs │ │ │ └── tests.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ ├── lib.rs │ └── roots.rs └── tests │ └── roots.rs ├── num-traits ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── RELEASES.md ├── bors.toml ├── build.rs ├── ci │ ├── rustup.sh │ └── test_full.sh ├── sgx │ └── num-traits-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── cast.rs │ │ │ ├── lib.rs │ │ │ ├── test_bounds.rs │ │ │ ├── test_float.rs │ │ │ ├── test_identities.rs │ │ │ ├── test_lib.rs │ │ │ ├── test_mul_add.rs │ │ │ ├── test_sign.rs │ │ │ └── test_wrapping.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ ├── bounds.rs │ ├── cast.rs │ ├── float.rs │ ├── identities.rs │ ├── int.rs │ ├── lib.rs │ ├── macros.rs │ ├── ops │ │ ├── checked.rs │ │ ├── inv.rs │ │ ├── mod.rs │ │ ├── mul_add.rs │ │ ├── saturating.rs │ │ └── wrapping.rs │ ├── pow.rs │ ├── real.rs │ └── sign.rs └── tests │ └── cast.rs ├── parity-scale-codec ├── .drone.yml ├── .editorconfig ├── .github │ └── pull.yml ├── .gitignore ├── .gitlab-ci.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── benches │ └── benches.rs ├── derive │ ├── Cargo.toml │ └── src │ │ ├── decode.rs │ │ ├── encode.rs │ │ ├── lib.rs │ │ ├── trait_bounds.rs │ │ └── utils.rs ├── fuzzer │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs ├── sgx │ └── parity-scale-codec-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── bit_vec.rs │ │ │ ├── codec.rs │ │ │ ├── compact.rs │ │ │ ├── decode_all.rs │ │ │ ├── encode_append.rs │ │ │ ├── encode_like.rs │ │ │ ├── generic_array_feature.rs │ │ │ └── lib.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ ├── lib │ │ └── readme.txt │ │ └── make_pub.diff ├── src │ ├── bit_vec.rs │ ├── codec.rs │ ├── compact.rs │ ├── decode_all.rs │ ├── encode_append.rs │ ├── encode_like.rs │ ├── generic_array.rs │ ├── joiner.rs │ ├── keyedvec.rs │ └── lib.rs └── tests │ ├── mod.rs │ ├── single_field_struct_encoding.rs │ └── skip.rs ├── rand ├── .drone.yml ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── compile-issue.md │ │ ├── feature_request.md │ │ └── other.md │ └── pull.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── COPYRIGHT ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── Xargo.toml ├── appveyor.yml ├── benches │ ├── generators.rs │ ├── misc.rs │ ├── seq.rs │ └── weighted.rs ├── examples │ ├── monte-carlo.rs │ └── monty-hall.rs ├── rand_chacha │ ├── CHANGELOG.md │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── chacha.rs │ │ └── lib.rs ├── rand_core │ ├── CHANGELOG.md │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── block.rs │ │ ├── error.rs │ │ ├── impls.rs │ │ ├── le.rs │ │ ├── lib.rs │ │ └── os.rs ├── rand_distr │ ├── CHANGELOG.md │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── benches │ │ └── distributions.rs │ ├── src │ │ ├── binomial.rs │ │ ├── cauchy.rs │ │ ├── dirichlet.rs │ │ ├── exponential.rs │ │ ├── gamma.rs │ │ ├── lib.rs │ │ ├── normal.rs │ │ ├── pareto.rs │ │ ├── pert.rs │ │ ├── poisson.rs │ │ ├── triangular.rs │ │ ├── unit_ball.rs │ │ ├── unit_circle.rs │ │ ├── unit_disc.rs │ │ ├── unit_sphere.rs │ │ ├── utils.rs │ │ ├── weibull.rs │ │ └── ziggurat_tables.rs │ └── tests │ │ └── uniformity.rs ├── rand_hc │ ├── CHANGELOG.md │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── hc128.rs │ │ └── lib.rs ├── rand_isaac │ ├── CHANGELOG.md │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── isaac.rs │ │ ├── isaac64.rs │ │ ├── isaac_array.rs │ │ └── lib.rs ├── rand_jitter │ ├── CHANGELOG.md │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── benches │ │ └── mod.rs │ ├── src │ │ ├── error.rs │ │ ├── lib.rs │ │ └── platform.rs │ └── tests │ │ └── mod.rs ├── rand_os │ ├── CHANGELOG.md │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ └── lib.rs ├── rand_pcg │ ├── CHANGELOG.md │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── src │ │ ├── lib.rs │ │ ├── pcg128.rs │ │ └── pcg64.rs │ └── tests │ │ ├── lcg128xsl64.rs │ │ ├── lcg64xsh32.rs │ │ └── mcg128xsl64.rs ├── rand_xorshift │ ├── CHANGELOG.md │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── src │ │ └── lib.rs │ └── tests │ │ └── mod.rs ├── rand_xoshiro │ ├── CHANGELOG.md │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── src │ │ ├── common.rs │ │ ├── lib.rs │ │ ├── splitmix64.rs │ │ ├── xoroshiro128plus.rs │ │ ├── xoroshiro128plusplus.rs │ │ ├── xoroshiro128starstar.rs │ │ ├── xoroshiro64star.rs │ │ ├── xoroshiro64starstar.rs │ │ ├── xoshiro128plus.rs │ │ ├── xoshiro128plusplus.rs │ │ ├── xoshiro128starstar.rs │ │ ├── xoshiro256plus.rs │ │ ├── xoshiro256plusplus.rs │ │ ├── xoshiro256starstar.rs │ │ ├── xoshiro512plus.rs │ │ ├── xoshiro512plusplus.rs │ │ └── xoshiro512starstar.rs │ └── tests │ │ └── serde.rs ├── rustfmt.toml ├── sgx │ ├── Cargo.toml │ └── rand-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── lib.rs │ │ │ └── lib_test.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ ├── distributions │ │ ├── bernoulli.rs │ │ ├── binomial.rs │ │ ├── cauchy.rs │ │ ├── dirichlet.rs │ │ ├── exponential.rs │ │ ├── float.rs │ │ ├── gamma.rs │ │ ├── integer.rs │ │ ├── mod.rs │ │ ├── normal.rs │ │ ├── other.rs │ │ ├── pareto.rs │ │ ├── poisson.rs │ │ ├── triangular.rs │ │ ├── uniform.rs │ │ ├── unit_circle.rs │ │ ├── unit_sphere.rs │ │ ├── utils.rs │ │ ├── weibull.rs │ │ ├── weighted │ │ │ ├── alias_method.rs │ │ │ └── mod.rs │ │ └── ziggurat_tables.rs │ ├── lib.rs │ ├── prelude.rs │ ├── rngs │ │ ├── adapter │ │ │ ├── mod.rs │ │ │ ├── read.rs │ │ │ └── reseeding.rs │ │ ├── entropy.rs │ │ ├── mock.rs │ │ ├── mod.rs │ │ ├── small.rs │ │ ├── std.rs │ │ └── thread.rs │ └── seq │ │ ├── index.rs │ │ └── mod.rs ├── tests │ └── wasm_bindgen │ │ ├── Cargo.toml │ │ ├── js │ │ └── index.js │ │ └── src │ │ └── lib.rs ├── utils │ ├── ci │ │ ├── install.sh │ │ ├── install_cargo_web.sh │ │ ├── miri.sh │ │ └── script.sh │ └── ziggurat_tables.py └── x86_64-unknown-linux-sgx.json ├── ring ├── .clang-format ├── .drone.yml ├── .editorconfig ├── .gitattributes ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── BUILDING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── STYLE.md ├── appveyor.yml ├── build.rs ├── crypto │ ├── .gitattributes │ ├── chacha │ │ └── asm │ │ │ ├── chacha-armv4.pl │ │ │ ├── chacha-armv8.pl │ │ │ ├── chacha-x86.pl │ │ │ └── chacha-x86_64.pl │ ├── cipher_extra │ │ ├── asm │ │ │ └── aes128gcmsiv-x86_64.pl │ │ └── test │ │ │ ├── aes_128_gcm_siv_tests.txt │ │ │ └── aes_256_gcm_siv_tests.txt │ ├── constant_time_test.c │ ├── cpu-intel.c │ ├── crypto.c │ ├── curve25519 │ │ └── asm │ │ │ └── x25519-asm-arm.S │ ├── fipsmodule │ │ ├── .gitattributes │ │ ├── aes │ │ │ └── asm │ │ │ │ ├── aes-586.pl │ │ │ │ ├── aes-armv4.pl │ │ │ │ ├── aes-x86_64.pl │ │ │ │ ├── aesni-x86.pl │ │ │ │ ├── aesni-x86_64.pl │ │ │ │ ├── aesv8-armx.pl │ │ │ │ ├── bsaes-armv7.pl │ │ │ │ ├── vpaes-armv8.pl │ │ │ │ ├── vpaes-x86.pl │ │ │ │ └── vpaes-x86_64.pl │ │ ├── bn │ │ │ ├── asm │ │ │ │ ├── armv4-mont.pl │ │ │ │ ├── armv8-mont.pl │ │ │ │ ├── x86-mont.pl │ │ │ │ ├── x86_64-mont.pl │ │ │ │ └── x86_64-mont5.pl │ │ │ ├── generic.c │ │ │ ├── internal.h │ │ │ ├── montgomery.c │ │ │ └── montgomery_inv.c │ │ ├── ec │ │ │ ├── .gitattributes │ │ │ ├── asm │ │ │ │ ├── ecp_nistz256-armv4.pl │ │ │ │ ├── ecp_nistz256-armv8.pl │ │ │ │ ├── ecp_nistz256-x86.pl │ │ │ │ ├── p256-x86_64-asm.pl │ │ │ │ └── p256_beeu-x86_64-asm.pl │ │ │ ├── ecp_nistz.c │ │ │ ├── ecp_nistz.h │ │ │ ├── ecp_nistz256.c │ │ │ ├── ecp_nistz256.h │ │ │ ├── ecp_nistz256_table.inl │ │ │ ├── ecp_nistz384.h │ │ │ ├── ecp_nistz384.inl │ │ │ ├── gfp_p256.c │ │ │ ├── gfp_p384.c │ │ │ └── make_p256-x86_64-table.go │ │ ├── ecdsa │ │ │ └── ecdsa_verify_tests.txt │ │ ├── modes │ │ │ ├── asm │ │ │ │ ├── aesni-gcm-x86_64.pl │ │ │ │ ├── ghash-armv4.pl │ │ │ │ ├── ghash-neon-armv8.pl │ │ │ │ ├── ghash-x86.pl │ │ │ │ ├── ghash-x86_64.pl │ │ │ │ └── ghashv8-armx.pl │ │ │ ├── gcm.c │ │ │ └── internal.h │ │ └── sha │ │ │ └── asm │ │ │ ├── sha256-armv4.pl │ │ │ ├── sha512-armv4.pl │ │ │ ├── sha512-armv8.pl │ │ │ └── sha512-x86_64.pl │ ├── internal.h │ ├── limbs │ │ ├── limbs.c │ │ ├── limbs.h │ │ └── limbs.inl │ ├── mem.c │ ├── perlasm │ │ ├── .gitattributes │ │ ├── arm-xlate.pl │ │ ├── readme │ │ ├── x86_64-xlate.pl │ │ ├── x86asm.pl │ │ ├── x86gas.pl │ │ └── x86nasm.pl │ └── poly1305 │ │ └── asm │ │ ├── poly1305-armv4.pl │ │ ├── poly1305-armv8.pl │ │ ├── poly1305-x86.pl │ │ └── poly1305-x86_64.pl ├── doc │ ├── ecdh.pdf │ ├── ecdsa.pdf │ └── link-to-readme.md ├── include │ └── GFp │ │ ├── .gitattributes │ │ ├── aes.h │ │ ├── arm_arch.h │ │ ├── base.h │ │ ├── cpu.h │ │ ├── mem.h │ │ └── type_check.h ├── mk │ ├── appveyor.bat │ ├── package.sh │ ├── travis-install-kcov.sh │ ├── travis.sh │ └── update-travis-yml.py ├── pregenerate_asm │ └── Cargo.toml ├── rustfmt.toml ├── sgx │ └── ring-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── lib.rs │ │ │ └── tests │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ ├── aead.rs │ ├── aead │ │ ├── aes.rs │ │ ├── aes_gcm.rs │ │ ├── aes_tests.txt │ │ ├── block.rs │ │ ├── chacha.rs │ │ ├── chacha20_poly1305.rs │ │ ├── chacha20_poly1305_openssh.rs │ │ ├── chacha_tests.txt │ │ ├── gcm.rs │ │ ├── nonce.rs │ │ ├── poly1305.rs │ │ ├── poly1305_test.txt │ │ ├── quic.rs │ │ └── shift.rs │ ├── agreement.rs │ ├── arithmetic.rs │ ├── arithmetic │ │ ├── bigint.rs │ │ ├── bigint_elem_exp_consttime_tests.txt │ │ ├── bigint_elem_exp_vartime_tests.txt │ │ ├── bigint_elem_mul_tests.txt │ │ ├── bigint_elem_reduced_once_tests.txt │ │ ├── bigint_elem_reduced_tests.txt │ │ ├── bigint_elem_squared_tests.txt │ │ ├── constant.rs │ │ └── montgomery.rs │ ├── bits.rs │ ├── bssl.rs │ ├── c.rs │ ├── constant_time.rs │ ├── cpu.rs │ ├── data │ │ └── alg-rsa-encryption.der │ ├── debug.rs │ ├── digest.rs │ ├── digest │ │ ├── sha1.rs │ │ └── sha2.rs │ ├── ec.rs │ ├── ec │ │ ├── curve25519.rs │ │ ├── curve25519 │ │ │ ├── ed25519.rs │ │ │ ├── ed25519 │ │ │ │ ├── ed25519_pkcs8_v2_template.der │ │ │ │ ├── signing.rs │ │ │ │ └── verification.rs │ │ │ ├── ops.rs │ │ │ ├── scalar.rs │ │ │ └── x25519.rs │ │ ├── keys.rs │ │ ├── suite_b.rs │ │ └── suite_b │ │ │ ├── curve.rs │ │ │ ├── ecdh.rs │ │ │ ├── ecdsa.rs │ │ │ ├── ecdsa │ │ │ ├── digest_scalar.rs │ │ │ ├── ecPublicKey_p256_pkcs8_v1_template.der │ │ │ ├── ecPublicKey_p384_pkcs8_v1_template.der │ │ │ ├── ecdsa_digest_scalar_tests.txt │ │ │ ├── ecdsa_sign_asn1_tests.txt │ │ │ ├── ecdsa_sign_fixed_tests.txt │ │ │ ├── signing.rs │ │ │ └── verification.rs │ │ │ ├── ops.rs │ │ │ ├── ops │ │ │ ├── elem.rs │ │ │ ├── p256.rs │ │ │ ├── p256_elem_mul_tests.txt │ │ │ ├── p256_elem_neg_tests.txt │ │ │ ├── p256_elem_sum_tests.txt │ │ │ ├── p256_point_double_tests.txt │ │ │ ├── p256_point_mul_base_tests.txt │ │ │ ├── p256_point_mul_serialized_tests.txt │ │ │ ├── p256_point_mul_tests.txt │ │ │ ├── p256_point_sum_mixed_tests.txt │ │ │ ├── p256_point_sum_tests.txt │ │ │ ├── p256_scalar_mul_tests.txt │ │ │ ├── p256_scalar_square_tests.txt │ │ │ ├── p384.rs │ │ │ ├── p384_elem_div_by_2_tests.txt │ │ │ ├── p384_elem_mul_tests.txt │ │ │ ├── p384_elem_neg_tests.txt │ │ │ ├── p384_elem_sum_tests.txt │ │ │ ├── p384_point_double_tests.txt │ │ │ ├── p384_point_mul_base_tests.txt │ │ │ ├── p384_point_mul_tests.txt │ │ │ ├── p384_point_sum_tests.txt │ │ │ └── p384_scalar_mul_tests.txt │ │ │ ├── private_key.rs │ │ │ ├── public_key.rs │ │ │ └── suite_b_public_key_tests.txt │ ├── endian.rs │ ├── error.rs │ ├── hkdf.rs │ ├── hmac.rs │ ├── hmac_generate_serializable_tests.txt │ ├── io.rs │ ├── io │ │ ├── der.rs │ │ ├── der_writer.rs │ │ ├── positive.rs │ │ └── writer.rs │ ├── lib.rs │ ├── limb.rs │ ├── pbkdf2.rs │ ├── pkcs8.rs │ ├── polyfill.rs │ ├── polyfill │ │ └── convert.rs │ ├── rand.rs │ ├── rsa.rs │ ├── rsa │ │ ├── convert_nist_rsa_test_vectors.py │ │ ├── padding.rs │ │ ├── rsa_pss_padding_tests.txt │ │ ├── signature_rsa_example_private_key.der │ │ ├── signature_rsa_example_public_key.der │ │ ├── signing.rs │ │ └── verification.rs │ ├── signature.rs │ ├── test.rs │ ├── test_1_syntax_error_tests.txt │ ├── test_1_tests.txt │ └── test_3_tests.txt ├── tests │ ├── aead_aes_128_gcm_tests.txt │ ├── aead_aes_256_gcm_tests.txt │ ├── aead_chacha20_poly1305_openssh_tests.txt │ ├── aead_chacha20_poly1305_tests.txt │ ├── aead_tests.rs │ ├── agreement_tests.rs │ ├── agreement_tests.txt │ ├── digest_tests.rs │ ├── digest_tests.txt │ ├── ecdsa_from_pkcs8_tests.txt │ ├── ecdsa_test_private_key_p256.p8 │ ├── ecdsa_test_public_key_p256.der │ ├── ecdsa_test_public_key_p256_debug.txt │ ├── ecdsa_tests.rs │ ├── ecdsa_verify_asn1_tests.txt │ ├── ecdsa_verify_fixed_tests.txt │ ├── ed25519_from_pkcs8_tests.txt │ ├── ed25519_from_pkcs8_unchecked_tests.txt │ ├── ed25519_test_private_key.bin │ ├── ed25519_test_private_key.p8 │ ├── ed25519_test_public_key.bin │ ├── ed25519_test_public_key.der │ ├── ed25519_tests.rs │ ├── ed25519_tests.txt │ ├── error_tests.rs │ ├── hkdf_tests.rs │ ├── hkdf_tests.txt │ ├── hmac_tests.rs │ ├── hmac_tests.txt │ ├── mod.rs │ ├── pbkdf2_tests.rs │ ├── pbkdf2_tests.txt │ ├── quic_aes_128_tests.txt │ ├── quic_aes_256_tests.txt │ ├── quic_chacha20_tests.txt │ ├── quic_tests.rs │ ├── rand_tests.rs │ ├── rsa_from_pkcs8_tests.txt │ ├── rsa_pkcs1_sign_tests.txt │ ├── rsa_pkcs1_verify_tests.txt │ ├── rsa_primitive_verify_tests.txt │ ├── rsa_pss_sign_tests.txt │ ├── rsa_pss_verify_tests.txt │ ├── rsa_test_private_key_2048.p8 │ ├── rsa_test_public_key_2048.der │ ├── rsa_test_public_key_2048_debug.txt │ ├── rsa_tests.rs │ └── signature_tests.rs ├── third_party │ ├── NIST │ │ ├── .gitattributes │ │ ├── README.md │ │ ├── SHAVS │ │ │ ├── SHA1LongMsg.rsp │ │ │ ├── SHA1Monte.rsp │ │ │ ├── SHA1ShortMsg.rsp │ │ │ ├── SHA224LongMsg.rsp │ │ │ ├── SHA224Monte.rsp │ │ │ ├── SHA224ShortMsg.rsp │ │ │ ├── SHA256LongMsg.rsp │ │ │ ├── SHA256Monte.rsp │ │ │ ├── SHA256ShortMsg.rsp │ │ │ ├── SHA384LongMsg.rsp │ │ │ ├── SHA384Monte.rsp │ │ │ ├── SHA384ShortMsg.rsp │ │ │ ├── SHA512LongMsg.rsp │ │ │ ├── SHA512Monte.rsp │ │ │ └── SHA512ShortMsg.rsp │ │ └── sha256sums.txt │ └── fiat │ │ ├── .gitattributes │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── README.md │ │ ├── curve25519.c │ │ ├── curve25519_32.h │ │ ├── curve25519_64.h │ │ ├── curve25519_tables.h │ │ ├── internal.h │ │ └── make_curve25519_tables.py └── util │ ├── ar │ ├── ar.go │ ├── ar_test.go │ └── testdata │ │ ├── sample │ │ ├── bar.cc │ │ └── foo.c │ │ └── windows │ │ ├── bar.cc.obj │ │ ├── foo.c.obj │ │ └── sample.lib │ ├── diff_asm.go │ ├── generate-asm-lcov.py │ ├── generate-coverage.sh │ ├── make_prefix_headers.go │ └── read_symbols.go ├── rust-base64 ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── RELEASE-NOTES.md ├── benches │ └── benchmarks.rs ├── examples │ └── make_tables.rs ├── fuzz │ ├── .gitignore │ ├── Cargo.toml │ └── fuzzers │ │ ├── decode_random.rs │ │ ├── roundtrip.rs │ │ ├── roundtrip_no_pad.rs │ │ ├── roundtrip_random_config.rs │ │ └── utils.rs ├── icon_CLion.svg ├── src │ ├── chunked_encoder.rs │ ├── decode.rs │ ├── display.rs │ ├── encode.rs │ ├── lib.rs │ ├── tables.rs │ ├── tests.rs │ └── write │ │ ├── encoder.rs │ │ ├── encoder_tests.rs │ │ └── mod.rs └── tests │ ├── decode.rs │ ├── encode.rs │ ├── helpers.rs │ └── tests.rs ├── rust-crypto ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── Xargo.toml ├── appveyor.yml ├── build.rs ├── examples │ └── symmetriccipher.rs ├── src │ ├── aead.rs │ ├── aes.rs │ ├── aes_gcm.rs │ ├── aesni.rs │ ├── aesni_helpers.asm │ ├── aesni_helpers.c │ ├── aessafe.rs │ ├── bcrypt.rs │ ├── bcrypt_pbkdf.rs │ ├── blake2b.rs │ ├── blake2s.rs │ ├── blockmodes.rs │ ├── blowfish.rs │ ├── buffer.rs │ ├── chacha20.rs │ ├── chacha20poly1305.rs │ ├── cryptoutil.rs │ ├── curve25519.rs │ ├── digest.rs │ ├── ed25519.rs │ ├── fortuna.rs │ ├── ghash.rs │ ├── hc128.rs │ ├── hkdf.rs │ ├── hmac.rs │ ├── lib.rs │ ├── mac.rs │ ├── md5.rs │ ├── pbkdf2.rs │ ├── poly1305.rs │ ├── rc4.rs │ ├── ripemd160.rs │ ├── salsa20.rs │ ├── scrypt.rs │ ├── sha1.rs │ ├── sha2.rs │ ├── sha3.rs │ ├── simd.rs │ ├── sosemanuk.rs │ ├── step_by.rs │ ├── symmetriccipher.rs │ ├── util.rs │ ├── util_helpers.asm │ ├── util_helpers.c │ └── whirlpool.rs └── x86_64-unknown-linux-sgx.json ├── rust-memchr ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── COPYING ├── Cargo.toml ├── LICENSE-MIT ├── README.md ├── UNLICENSE ├── appveyor.yml ├── bench │ ├── Cargo.toml │ ├── data │ │ ├── sherlock-holmes-huge.txt │ │ ├── sherlock-holmes-small.txt │ │ └── sherlock-holmes-tiny.txt │ └── src │ │ ├── bench.rs │ │ ├── imp.rs │ │ ├── inputs.rs │ │ └── lib.rs ├── ci │ └── script.sh ├── sgx │ └── memchr-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ ├── .gdb_history │ │ ├── peda-session-app.txt │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── lib.rs │ │ │ └── tests │ │ │ │ ├── iter.rs │ │ │ │ ├── memchr.rs │ │ │ │ └── mod.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ ├── lib │ │ └── readme.txt │ │ └── test.diff └── src │ ├── c.rs │ ├── fallback.rs │ ├── iter.rs │ ├── lib.rs │ ├── naive.rs │ ├── tests │ ├── iter.rs │ ├── memchr.rs │ └── mod.rs │ └── x86 │ ├── avx.rs │ ├── mod.rs │ ├── sse2.rs │ └── sse42.rs ├── rustc-serialize ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── Xargo.toml ├── appveyor.yml ├── benches │ ├── base64.rs │ ├── hex.rs │ └── json.rs ├── src │ ├── base64.rs │ ├── collection_impls.rs │ ├── hex.rs │ ├── json.rs │ ├── lib.rs │ └── serialize.rs └── x86_64-unknown-linux-sgx.json ├── rustcrypto-MACs ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── README.md ├── cmac │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ ├── aes128_cmac.rs │ │ └── aes256_cmac.rs │ ├── src │ │ └── lib.rs │ └── tests │ │ ├── data │ │ ├── aes128.blb │ │ ├── aes192.blb │ │ └── aes256.blb │ │ └── lib.rs ├── daa │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── mod.rs │ └── src │ │ └── lib.rs ├── hmac │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── src │ │ └── lib.rs │ └── tests │ │ ├── data │ │ ├── md5.blb │ │ ├── sha224.blb │ │ ├── sha256.blb │ │ ├── sha384.blb │ │ └── sha512.blb │ │ └── lib.rs ├── pmac │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ ├── aes128_pmac.rs │ │ └── aes256_pmac.rs │ ├── src │ │ └── lib.rs │ └── tests │ │ ├── data │ │ ├── aes128.blb │ │ ├── aes192.blb │ │ └── aes256.blb │ │ └── lib.rs └── sgx │ ├── Cargo.toml │ ├── MACs-sgx-test │ ├── Makefile │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ ├── bin │ │ └── readme.txt │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── cmac_tests.rs │ │ │ ├── daa_tests.rs │ │ │ ├── data │ │ │ │ ├── aes128.blb │ │ │ │ ├── aes192.blb │ │ │ │ ├── aes256.blb │ │ │ │ ├── md5.blb │ │ │ │ ├── pmac_aes128.blb │ │ │ │ ├── pmac_aes192.blb │ │ │ │ ├── pmac_aes256.blb │ │ │ │ ├── sha224.blb │ │ │ │ ├── sha256.blb │ │ │ │ ├── sha384.blb │ │ │ │ └── sha512.blb │ │ │ ├── hmac_tests.rs │ │ │ ├── lib.rs │ │ │ └── pmac_tests.rs │ │ └── x86_64-unknown-linux-sgx.json │ └── lib │ │ └── readme.txt │ └── x86_64-unknown-linux-sgx.json ├── rustcrypto-block-ciphers ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── README.md ├── aes │ ├── aes-soft │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── benches │ │ │ ├── aes128.rs │ │ │ ├── aes192.rs │ │ │ └── aes256.rs │ │ ├── src │ │ │ ├── bitslice.rs │ │ │ ├── consts.rs │ │ │ ├── expand.rs │ │ │ ├── impls.rs │ │ │ ├── lib.rs │ │ │ └── simd.rs │ │ └── tests │ │ │ ├── data │ │ │ ├── aes128.blb │ │ │ ├── aes192.blb │ │ │ └── aes256.blb │ │ │ └── lib.rs │ ├── aes │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── benches │ │ │ ├── aes128.rs │ │ │ ├── aes192.rs │ │ │ └── aes256.rs │ │ ├── src │ │ │ └── lib.rs │ │ └── tests │ │ │ ├── data │ │ │ ├── aes128.blb │ │ │ ├── aes192.blb │ │ │ └── aes256.blb │ │ │ └── lib.rs │ └── aesni │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ ├── benches │ │ ├── aes128.rs │ │ ├── aes128_ctr.rs │ │ ├── aes192.rs │ │ ├── aes192_ctr.rs │ │ ├── aes256.rs │ │ └── aes256_ctr.rs │ │ ├── src │ │ ├── aes128 │ │ │ ├── expand.rs │ │ │ ├── mod.rs │ │ │ └── test_expand.rs │ │ ├── aes192 │ │ │ ├── expand.rs │ │ │ ├── mod.rs │ │ │ └── test_expand.rs │ │ ├── aes256 │ │ │ ├── expand.rs │ │ │ ├── mod.rs │ │ │ └── test_expand.rs │ │ ├── ctr.rs │ │ ├── lib.rs │ │ ├── target_checks.rs │ │ └── utils.rs │ │ └── tests │ │ ├── ctr.rs │ │ ├── data │ │ ├── aes128-ctr.blb │ │ ├── aes128.blb │ │ ├── aes192.blb │ │ ├── aes256-ctr.blb │ │ └── aes256.blb │ │ └── mod.rs ├── block-modes │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── src │ │ ├── cbc.rs │ │ ├── ecb.rs │ │ ├── errors.rs │ │ ├── lib.rs │ │ ├── pcbc.rs │ │ ├── traits.rs │ │ └── utils.rs │ └── tests │ │ ├── data │ │ ├── aes128.iv.bin │ │ ├── aes128.key.bin │ │ ├── aes128.plaintext.bin │ │ ├── cbc-aes128.ciphertext.bin │ │ ├── ecb-aes128.ciphertext.bin │ │ └── ofb-aes128.ciphertext.bin │ │ └── lib.rs ├── blowfish │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── src │ │ ├── consts.rs │ │ └── lib.rs │ └── tests │ │ ├── data │ │ └── blowfish.blb │ │ └── lib.rs ├── build_nostd.sh ├── cast5 │ ├── .gitignore │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── src │ │ ├── cast5.rs │ │ ├── consts.rs │ │ ├── lib.rs │ │ └── schedule.rs │ └── tests │ │ ├── data │ │ ├── set1.blb │ │ ├── set2.blb │ │ ├── set3.blb │ │ ├── set4.blb │ │ ├── set5.blb │ │ ├── set6.blb │ │ ├── set7.blb │ │ └── set8.blb │ │ └── lib.rs ├── des │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ ├── des.rs │ │ └── tdes.rs │ ├── src │ │ ├── consts.rs │ │ ├── des.rs │ │ ├── lib.rs │ │ └── tdes.rs │ └── tests │ │ ├── data │ │ ├── des.blb │ │ ├── tdes.blb │ │ └── tdes2.blb │ │ └── lib.rs ├── kuznyechik │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── src │ │ ├── consts.rs │ │ └── lib.rs │ └── tests │ │ └── lib.rs ├── magma │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── src │ │ ├── construct.rs │ │ ├── gen_table.rs │ │ ├── lib.rs │ │ ├── sboxes.rs │ │ └── sboxes_exp.rs │ └── tests │ │ └── lib.rs ├── rc2 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── src │ │ ├── consts.rs │ │ └── lib.rs │ └── tests │ │ ├── data │ │ ├── 1.input.bin │ │ ├── 1.key.bin │ │ ├── 1.output.bin │ │ ├── 2.input.bin │ │ ├── 2.key.bin │ │ ├── 2.output.bin │ │ ├── 3.input.bin │ │ ├── 3.key.bin │ │ ├── 3.output.bin │ │ ├── 4.input.bin │ │ ├── 4.key.bin │ │ ├── 4.output.bin │ │ ├── 5.input.bin │ │ ├── 5.key.bin │ │ ├── 5.output.bin │ │ ├── 6.input.bin │ │ ├── 6.key.bin │ │ ├── 6.output.bin │ │ ├── 7.input.bin │ │ ├── 7.key.bin │ │ ├── 7.output.bin │ │ ├── 8.input.bin │ │ ├── 8.key.bin │ │ └── 8.output.bin │ │ └── lib.rs ├── rustfmt.toml ├── sgx │ ├── Cargo.toml │ ├── block-ciphers-sgx-test │ │ ├── Makefile │ │ ├── app │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── bin │ │ │ └── readme.txt │ │ ├── common │ │ │ └── inc │ │ │ │ ├── assert.h │ │ │ │ ├── complex.h │ │ │ │ ├── ctype.h │ │ │ │ ├── dirent.h │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── float.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── iso646.h │ │ │ │ ├── limits.h │ │ │ │ ├── math.h │ │ │ │ ├── mbusafecrt.h │ │ │ │ ├── poll.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── sys │ │ │ │ ├── _types.h │ │ │ │ ├── cdefs.h │ │ │ │ ├── endian.h │ │ │ │ ├── epoll.h │ │ │ │ ├── ieee.h │ │ │ │ ├── limits.h │ │ │ │ ├── sockaddr.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── struct_timespec.h │ │ │ │ ├── types.h │ │ │ │ └── uio.h │ │ │ │ ├── time.h │ │ │ │ ├── unistd.h │ │ │ │ ├── wchar.h │ │ │ │ └── wctype.h │ │ ├── edl │ │ │ ├── inc │ │ │ │ ├── dirent.h │ │ │ │ └── stat.h │ │ │ ├── sgx_asyncio.edl │ │ │ ├── sgx_backtrace.edl │ │ │ ├── sgx_env.edl │ │ │ ├── sgx_fd.edl │ │ │ ├── sgx_file.edl │ │ │ ├── sgx_fs.edl │ │ │ ├── sgx_mem.edl │ │ │ ├── sgx_net.edl │ │ │ ├── sgx_net_switchless.edl │ │ │ ├── sgx_pipe.edl │ │ │ ├── sgx_socket.edl │ │ │ ├── sgx_stdio.edl │ │ │ ├── sgx_sys.edl │ │ │ ├── sgx_time.edl │ │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ │ ├── Cargo.toml │ │ │ ├── Enclave.config.xml │ │ │ ├── Enclave.edl │ │ │ ├── Enclave.lds │ │ │ ├── Enclave_private.pem │ │ │ ├── Makefile │ │ │ ├── Xargo.toml │ │ │ ├── graph.png │ │ │ ├── src │ │ │ │ ├── aes_soft_tests.rs │ │ │ │ ├── aes_tests.rs │ │ │ │ ├── aesni_ctr_tests.rs │ │ │ │ ├── aesni_tests.rs │ │ │ │ ├── block_modes_tests.rs │ │ │ │ ├── blowfish_tests.rs │ │ │ │ ├── cast5_tests.rs │ │ │ │ ├── data │ │ │ │ │ ├── 1.input.bin │ │ │ │ │ ├── 1.key.bin │ │ │ │ │ ├── 1.output.bin │ │ │ │ │ ├── 2.input.bin │ │ │ │ │ ├── 2.key.bin │ │ │ │ │ ├── 2.output.bin │ │ │ │ │ ├── 3.input.bin │ │ │ │ │ ├── 3.key.bin │ │ │ │ │ ├── 3.output.bin │ │ │ │ │ ├── 4.input.bin │ │ │ │ │ ├── 4.key.bin │ │ │ │ │ ├── 4.output.bin │ │ │ │ │ ├── 5.input.bin │ │ │ │ │ ├── 5.key.bin │ │ │ │ │ ├── 5.output.bin │ │ │ │ │ ├── 6.input.bin │ │ │ │ │ ├── 6.key.bin │ │ │ │ │ ├── 6.output.bin │ │ │ │ │ ├── 7.input.bin │ │ │ │ │ ├── 7.key.bin │ │ │ │ │ ├── 7.output.bin │ │ │ │ │ ├── 8.input.bin │ │ │ │ │ ├── 8.key.bin │ │ │ │ │ ├── 8.output.bin │ │ │ │ │ ├── aes128-ctr.blb │ │ │ │ │ ├── aes128.blb │ │ │ │ │ ├── aes128.iv.bin │ │ │ │ │ ├── aes128.key.bin │ │ │ │ │ ├── aes128.plaintext.bin │ │ │ │ │ ├── aes192.blb │ │ │ │ │ ├── aes256-ctr.blb │ │ │ │ │ ├── aes256.blb │ │ │ │ │ ├── blowfish.blb │ │ │ │ │ ├── cbc-aes128.ciphertext.bin │ │ │ │ │ ├── des.blb │ │ │ │ │ ├── ecb-aes128.ciphertext.bin │ │ │ │ │ ├── ofb-aes128.ciphertext.bin │ │ │ │ │ ├── set1.blb │ │ │ │ │ ├── set2.blb │ │ │ │ │ ├── set3.blb │ │ │ │ │ ├── set4.blb │ │ │ │ │ ├── set5.blb │ │ │ │ │ ├── set6.blb │ │ │ │ │ ├── set7.blb │ │ │ │ │ ├── set8.blb │ │ │ │ │ ├── tdes.blb │ │ │ │ │ └── tdes2.blb │ │ │ │ ├── des_tests.rs │ │ │ │ ├── kuznyechik_tests.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── magma_tests.rs │ │ │ │ ├── rc2_tests.rs │ │ │ │ └── twofish_tests.rs │ │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ │ └── readme.txt │ └── x86_64-unknown-linux-sgx.json ├── test_aes.sh └── twofish │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ └── mod.rs │ ├── src │ ├── consts.rs │ ├── lib.rs │ └── tests.rs │ └── tests │ └── lib.rs ├── rustcrypto-hashes ├── .drone.yml ├── .gitattributes ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── README.md ├── Xargo.toml ├── blake2 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ ├── blake2b.rs │ │ └── blake2s.rs │ ├── examples │ │ ├── blake2b_sum.rs │ │ └── blake2s_sum.rs │ ├── src │ │ ├── as_bytes.rs │ │ ├── blake2.rs │ │ ├── blake2b.rs │ │ ├── blake2s.rs │ │ ├── consts.rs │ │ ├── lib.rs │ │ └── simd │ │ │ ├── mod.rs │ │ │ ├── simd_opt │ │ │ ├── mod.rs │ │ │ ├── u32x4.rs │ │ │ └── u64x4.rs │ │ │ ├── simdint.rs │ │ │ ├── simdop.rs │ │ │ └── simdty.rs │ └── tests │ │ ├── data │ │ ├── blake2b │ │ │ ├── fixed.blb │ │ │ ├── mac.blb │ │ │ └── variable.blb │ │ └── blake2s │ │ │ ├── mac.blb │ │ │ └── variable.blb │ │ ├── lib.rs │ │ └── mac.rs ├── build_nostd.sh ├── gost94 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── examples │ │ ├── gost94_cryptopro_sum.rs │ │ └── gost94_test_sum.rs │ ├── src │ │ ├── cryptopro.rs │ │ ├── gost94.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── s2015.rs │ │ └── test_param.rs │ └── tests │ │ ├── data │ │ ├── cryptopro.blb │ │ ├── cryptopro_one_million_a.bin │ │ ├── test.blb │ │ └── test_one_million_a.bin │ │ └── lib.rs ├── groestl │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ ├── groestl256.rs │ │ └── groestl512.rs │ ├── src │ │ ├── consts.rs │ │ ├── groestl.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── matrix.rs │ │ └── state.rs │ └── tests │ │ ├── data │ │ ├── groestl224.blb │ │ ├── groestl256.blb │ │ ├── groestl384.blb │ │ └── groestl512.blb │ │ └── lib.rs ├── md2 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── examples │ │ └── md2sum.rs │ ├── src │ │ ├── consts.rs │ │ └── lib.rs │ └── tests │ │ ├── data │ │ ├── md2.blb │ │ └── one_million_a.bin │ │ └── lib.rs ├── md4 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── examples │ │ └── md4sum.rs │ ├── src │ │ └── lib.rs │ └── tests │ │ ├── data │ │ ├── md4.blb │ │ └── one_million_a.bin │ │ └── lib.rs ├── md5 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── examples │ │ └── md5sum.rs │ ├── src │ │ ├── consts.rs │ │ ├── lib.rs │ │ └── utils.rs │ └── tests │ │ ├── data │ │ ├── md5.blb │ │ └── one_million_a.bin │ │ └── lib.rs ├── ripemd160 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── examples │ │ └── ripemd160sum.rs │ ├── src │ │ ├── block.rs │ │ └── lib.rs │ └── tests │ │ ├── data │ │ ├── one_million_a.bin │ │ └── ripemd160.blb │ │ └── lib.rs ├── ripemd320 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── examples │ │ └── ripemd320sum.rs │ ├── src │ │ ├── block.rs │ │ └── lib.rs │ └── tests │ │ ├── data │ │ ├── one_million_a.bin │ │ └── ripemd320.blb │ │ └── lib.rs ├── sha1 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── examples │ │ └── sha1sum.rs │ ├── src │ │ ├── consts.rs │ │ ├── lib.rs │ │ └── utils.rs │ └── tests │ │ ├── data │ │ ├── one_million_a.bin │ │ └── sha1.blb │ │ └── lib.rs ├── sha2 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ ├── sha256.rs │ │ └── sha512.rs │ ├── examples │ │ ├── sha256sum.rs │ │ └── sha512sum.rs │ ├── src │ │ ├── consts.rs │ │ ├── lib.rs │ │ ├── sha256.rs │ │ ├── sha256_utils.rs │ │ ├── sha512.rs │ │ └── sha512_utils.rs │ └── tests │ │ ├── data │ │ ├── sha224.blb │ │ ├── sha256.blb │ │ ├── sha256_one_million_a.bin │ │ ├── sha384.blb │ │ ├── sha512.blb │ │ ├── sha512_224.blb │ │ ├── sha512_256.blb │ │ └── sha512_one_million_a.bin │ │ └── lib.rs ├── sha3 │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ ├── sha3_256.rs │ │ └── sha3_512.rs │ ├── examples │ │ ├── sha3_256sum.rs │ │ └── sha3_512sum.rs │ ├── src │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── paddings.rs │ │ ├── reader.rs │ │ └── state.rs │ └── tests │ │ ├── data │ │ ├── keccak_224.blb │ │ ├── keccak_256.blb │ │ ├── keccak_256_full.blb │ │ ├── keccak_384.blb │ │ ├── keccak_512.blb │ │ ├── sha3_224.blb │ │ ├── sha3_256.blb │ │ ├── sha3_384.blb │ │ ├── sha3_512.blb │ │ ├── shake128.blb │ │ └── shake256.blb │ │ └── lib.rs ├── streebog │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ ├── streebog256.rs │ │ └── streebog512.rs │ ├── examples │ │ ├── streebog256sum.rs │ │ └── streebog512sum.rs │ ├── src │ │ ├── consts.rs │ │ ├── lib.rs │ │ ├── streebog.rs │ │ └── table.rs │ └── tests │ │ ├── data │ │ ├── streebog256.blb │ │ └── streebog512.blb │ │ └── lib.rs ├── test_features.sh ├── whirlpool │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── lib.rs │ ├── examples │ │ └── whirlpool_sum.rs │ ├── src │ │ ├── consts.rs │ │ ├── lib.rs │ │ └── utils.rs │ └── tests │ │ ├── data │ │ ├── one_million_a.bin │ │ └── whirlpool.blb │ │ └── lib.rs └── x86_64-unknown-linux-sgx.json ├── rustcrypto-traits ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── README.md ├── Xargo.toml ├── aead │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ └── lib.rs ├── block-cipher-trait │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ ├── dev.rs │ │ ├── errors.rs │ │ └── lib.rs ├── build_std.sh ├── crypto-mac │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ ├── dev.rs │ │ ├── errors.rs │ │ └── lib.rs ├── digest │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ ├── dev.rs │ │ ├── digest.rs │ │ ├── dyn_digest.rs │ │ ├── errors.rs │ │ └── lib.rs ├── stream-cipher │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ ├── dev.rs │ │ ├── errors.rs │ │ └── lib.rs ├── universal-hash │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ └── lib.rs └── x86_64-unknown-linux-sgx.json ├── rustcrypto-utils ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── .workspace.rs ├── Cargo.toml ├── README.md ├── Xargo.toml ├── blobby │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── Xargo.toml │ ├── examples │ │ └── convert.rs │ ├── src │ │ └── lib.rs │ └── tests │ │ └── mod.rs ├── block-buffer │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ └── lib.rs ├── block-padding │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ └── lib.rs ├── byte-tools │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ └── lib.rs ├── crypto-ops │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── build.rs │ └── src │ │ ├── helpers.asm │ │ ├── helpers.c │ │ └── lib.rs ├── crypto-tests │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ ├── block_cipher.rs │ │ ├── hash.rs │ │ ├── lib.rs │ │ └── mac.rs ├── ctgrind │ ├── .travis.yml │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── examples │ │ └── test.rs │ └── src │ │ └── lib.rs ├── dbl │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ └── lib.rs ├── digest-buffer │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ └── lib.rs ├── fake-simd │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ └── lib.rs ├── hex-literal │ ├── .gitignore │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── hex-literal-impl │ │ ├── Cargo.toml │ │ ├── LICENSE-APACHE │ │ ├── LICENSE-MIT │ │ └── src │ │ │ └── lib.rs │ └── src │ │ └── lib.rs ├── opaque-debug │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ └── lib.rs └── x86_64-unknown-linux-sgx.json ├── rustls ├── .azure-pipelines.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-ISC ├── LICENSE-MIT ├── OLDCHANGES.md ├── README.md ├── admin │ ├── bench-measure.mk │ ├── bench-range │ ├── build-lcov │ ├── capture-certdata │ ├── coverage │ ├── coverage-rustc │ ├── format-bench │ ├── llvm-gcov │ ├── pipelines │ │ ├── bench.yml │ │ ├── bogo.yml │ │ ├── cargo-steps.yml │ │ ├── coverage.yml │ │ ├── min-versions.yml │ │ └── rustup.yml │ ├── pull-readme │ ├── pull-usage │ └── rustls-logo-web.png ├── bogo │ ├── .gitignore │ ├── check.py │ ├── config.json │ ├── fetch-and-build │ ├── keys │ │ ├── cert.pem │ │ ├── ecdsa_p256_cert.pem │ │ ├── ecdsa_p256_key.pem │ │ ├── ecdsa_p384_cert.pem │ │ ├── ecdsa_p384_key.pem │ │ ├── key.pem │ │ ├── rsa_1024_cert.pem │ │ ├── rsa_1024_key.pem │ │ ├── rsa_chain_cert.pem │ │ └── rsa_chain_key.pem │ ├── patches │ │ └── testerrormap.diff │ ├── regen-certs │ └── runme ├── examples │ ├── README.md │ └── internal │ │ ├── bench.rs │ │ ├── bogo_shim.rs │ │ └── trytls_shim.rs ├── fuzz │ ├── .gitignore │ ├── Cargo.toml │ ├── corpus │ │ ├── client │ │ │ ├── tls12-server.bin │ │ │ └── tls13-server.bin │ │ ├── message │ │ │ ├── Alert.10280050250016901720.bin │ │ │ ├── Alert.10990289312340337901.bin │ │ │ ├── Alert.11416797448165465899.bin │ │ │ ├── Alert.11453208220996012273.bin │ │ │ ├── Alert.11565037296979808272.bin │ │ │ ├── Alert.11760376156357150936.bin │ │ │ ├── Alert.12245208494696599323.bin │ │ │ ├── Alert.12355157071787079801.bin │ │ │ ├── Alert.12375939412686290950.bin │ │ │ ├── Alert.12378204967172258450.bin │ │ │ ├── Alert.12615425949843913652.bin │ │ │ ├── Alert.12786326721221384799.bin │ │ │ ├── Alert.13339784566695133300.bin │ │ │ ├── Alert.13361831451407093096.bin │ │ │ ├── Alert.13518407338280213965.bin │ │ │ ├── Alert.13944372952187732560.bin │ │ │ ├── Alert.14329079313034565007.bin │ │ │ ├── Alert.14763597747152221220.bin │ │ │ ├── Alert.15529719457323058694.bin │ │ │ ├── Alert.16757745138222651512.bin │ │ │ ├── Alert.17041130500670955403.bin │ │ │ ├── Alert.17076052668804544911.bin │ │ │ ├── Alert.17808584441538747011.bin │ │ │ ├── Alert.1926005331368283096.bin │ │ │ ├── Alert.2519011641324364265.bin │ │ │ ├── Alert.3043772687617154178.bin │ │ │ ├── Alert.3312711214589330727.bin │ │ │ ├── Alert.3846875027962666933.bin │ │ │ ├── Alert.3913777692829914411.bin │ │ │ ├── Alert.4452180125344520836.bin │ │ │ ├── Alert.4742310320599043602.bin │ │ │ ├── Alert.5389179157252855041.bin │ │ │ ├── Alert.5456718882703404602.bin │ │ │ ├── Alert.6121018813528470199.bin │ │ │ ├── Alert.6263407189670520235.bin │ │ │ ├── Alert.7573777073329161362.bin │ │ │ ├── Alert.7765214894001215959.bin │ │ │ ├── Alert.8003974926653128830.bin │ │ │ ├── Alert.8040902803342244309.bin │ │ │ ├── Alert.9395714526513626176.bin │ │ │ ├── Alert.9705133744397563296.bin │ │ │ ├── ApplicationData.1679947195649814466.bin │ │ │ ├── ApplicationData.9982215765603175582.bin │ │ │ ├── ChangeCipherSpec.5130871619167228381.bin │ │ │ ├── Handshake.10011143024461322467.bin │ │ │ ├── Handshake.10077665702210867505.bin │ │ │ ├── Handshake.10098879893470023836.bin │ │ │ ├── Handshake.1014094126958255749.bin │ │ │ ├── Handshake.10141290723738510057.bin │ │ │ ├── Handshake.10141834381331746219.bin │ │ │ ├── Handshake.10209460977184754837.bin │ │ │ ├── Handshake.10218605480040858007.bin │ │ │ ├── Handshake.10240025107753113811.bin │ │ │ ├── Handshake.10371497117445277776.bin │ │ │ ├── Handshake.10371726514864811512.bin │ │ │ ├── Handshake.10404861134591260329.bin │ │ │ ├── Handshake.10435794347579708741.bin │ │ │ ├── Handshake.10446208266497761172.bin │ │ │ ├── Handshake.10456857047407384689.bin │ │ │ ├── Handshake.10458215951434834175.bin │ │ │ ├── Handshake.10552517710869239241.bin │ │ │ ├── Handshake.10558811065537550384.bin │ │ │ ├── Handshake.10613091849924479756.bin │ │ │ ├── Handshake.10659216864320865342.bin │ │ │ ├── Handshake.10681270166105325453.bin │ │ │ ├── Handshake.10688022178565531040.bin │ │ │ ├── Handshake.10698695949247460925.bin │ │ │ ├── Handshake.10742438438534962209.bin │ │ │ ├── Handshake.10874002327852371828.bin │ │ │ ├── Handshake.10883949373270779757.bin │ │ │ ├── Handshake.10916777788113490974.bin │ │ │ ├── Handshake.11036929536862183793.bin │ │ │ ├── Handshake.11133859442970323138.bin │ │ │ ├── Handshake.11200934711857544531.bin │ │ │ ├── Handshake.11252751319713410600.bin │ │ │ ├── Handshake.11262390920595632125.bin │ │ │ ├── Handshake.11263729003567826431.bin │ │ │ ├── Handshake.1128253234623654886.bin │ │ │ ├── Handshake.11311319071620970474.bin │ │ │ ├── Handshake.11402577742008484913.bin │ │ │ ├── Handshake.11420916514041666430.bin │ │ │ ├── Handshake.11436898661660187192.bin │ │ │ ├── Handshake.11476587042910458435.bin │ │ │ ├── Handshake.11560651271531308535.bin │ │ │ ├── Handshake.11577081787284137323.bin │ │ │ ├── Handshake.11599548177419428055.bin │ │ │ ├── Handshake.11729926090369047740.bin │ │ │ ├── Handshake.11734105735310423560.bin │ │ │ ├── Handshake.11768011845890387011.bin │ │ │ ├── Handshake.11797635867773909803.bin │ │ │ ├── Handshake.11831695944078976098.bin │ │ │ ├── Handshake.11864301203407148532.bin │ │ │ ├── Handshake.11897948021151086611.bin │ │ │ ├── Handshake.1189983604093770200.bin │ │ │ ├── Handshake.11899913542638122182.bin │ │ │ ├── Handshake.1201340471094163820.bin │ │ │ ├── Handshake.12049357286072587683.bin │ │ │ ├── Handshake.12050074869185469294.bin │ │ │ ├── Handshake.12095880389901769183.bin │ │ │ ├── Handshake.12097987555572946602.bin │ │ │ ├── Handshake.12108739684593654595.bin │ │ │ ├── Handshake.1210891782701783637.bin │ │ │ ├── Handshake.12229778010996579180.bin │ │ │ ├── Handshake.12272542168539556446.bin │ │ │ ├── Handshake.12324399657563551716.bin │ │ │ ├── Handshake.12419794187727158761.bin │ │ │ ├── Handshake.12461674601026577652.bin │ │ │ ├── Handshake.12542921702091737503.bin │ │ │ ├── Handshake.12575443973166284515.bin │ │ │ ├── Handshake.12619619622709153468.bin │ │ │ ├── Handshake.12713618516910133238.bin │ │ │ ├── Handshake.12791027514067409694.bin │ │ │ ├── Handshake.12821925002150674327.bin │ │ │ ├── Handshake.12866691055333988812.bin │ │ │ ├── Handshake.12881350425646542526.bin │ │ │ ├── Handshake.12906714218699487516.bin │ │ │ ├── Handshake.12923847857105388415.bin │ │ │ ├── Handshake.12933585682510177240.bin │ │ │ ├── Handshake.12933927063134556696.bin │ │ │ ├── Handshake.12962951870000222901.bin │ │ │ ├── Handshake.12987742379477651587.bin │ │ │ ├── Handshake.12992305617680129286.bin │ │ │ ├── Handshake.13032428774562074898.bin │ │ │ ├── Handshake.1309579295029779311.bin │ │ │ ├── Handshake.13135207830642795575.bin │ │ │ ├── Handshake.13146595373118622951.bin │ │ │ ├── Handshake.13208116316761918660.bin │ │ │ ├── Handshake.13252009950983403856.bin │ │ │ ├── Handshake.13254954579228851613.bin │ │ │ ├── Handshake.13276329037903871174.bin │ │ │ ├── Handshake.13373545972366589631.bin │ │ │ ├── Handshake.13401359172328241694.bin │ │ │ ├── Handshake.13422631897482703892.bin │ │ │ ├── Handshake.13448396166617358694.bin │ │ │ ├── Handshake.13462900989360483027.bin │ │ │ ├── Handshake.13490041212957887113.bin │ │ │ ├── Handshake.13508856728571080946.bin │ │ │ ├── Handshake.13527476206349948098.bin │ │ │ ├── Handshake.13553527446655009046.bin │ │ │ ├── Handshake.13567655794415259226.bin │ │ │ ├── Handshake.13572499048018428911.bin │ │ │ ├── Handshake.13584197101871325906.bin │ │ │ ├── Handshake.13648713539106128587.bin │ │ │ ├── Handshake.1365796585825694264.bin │ │ │ ├── Handshake.13790749913165199198.bin │ │ │ ├── Handshake.13814068595971935296.bin │ │ │ ├── Handshake.13884570758846245053.bin │ │ │ ├── Handshake.1394349569218781788.bin │ │ │ ├── Handshake.13984063482272562700.bin │ │ │ ├── Handshake.13984770398439454092.bin │ │ │ ├── Handshake.13999267638725815508.bin │ │ │ ├── Handshake.14009877000152811622.bin │ │ │ ├── Handshake.14013883575498423468.bin │ │ │ ├── Handshake.14024049187646346995.bin │ │ │ ├── Handshake.14063675181380296895.bin │ │ │ ├── Handshake.14069660426092783164.bin │ │ │ ├── Handshake.14099606319859446532.bin │ │ │ ├── Handshake.14242200054858355158.bin │ │ │ ├── Handshake.1425510439158102692.bin │ │ │ ├── Handshake.14282273754635061222.bin │ │ │ ├── Handshake.14320193797455121029.bin │ │ │ ├── Handshake.14322628933094490808.bin │ │ │ ├── Handshake.14393665983695130074.bin │ │ │ ├── Handshake.14412410967361510993.bin │ │ │ ├── Handshake.14429326485950888401.bin │ │ │ ├── Handshake.14446821313588772895.bin │ │ │ ├── Handshake.14525786614546755913.bin │ │ │ ├── Handshake.14585480434123890306.bin │ │ │ ├── Handshake.14589551266924465272.bin │ │ │ ├── Handshake.14617410605578343341.bin │ │ │ ├── Handshake.14662564964928502601.bin │ │ │ ├── Handshake.14695493555000511183.bin │ │ │ ├── Handshake.1469590175970957671.bin │ │ │ ├── Handshake.14703099513472818837.bin │ │ │ ├── Handshake.1473135651763031014.bin │ │ │ ├── Handshake.14866688372795221766.bin │ │ │ ├── Handshake.14908741649050651227.bin │ │ │ ├── Handshake.14923365458552646986.bin │ │ │ ├── Handshake.15068056427013946956.bin │ │ │ ├── Handshake.15176487544662052367.bin │ │ │ ├── Handshake.1518320918629890656.bin │ │ │ ├── Handshake.15192629661718834661.bin │ │ │ ├── Handshake.15228554977041565944.bin │ │ │ ├── Handshake.1530973898026006702.bin │ │ │ ├── Handshake.15388918098225859116.bin │ │ │ ├── Handshake.15392005723087373547.bin │ │ │ ├── Handshake.15411291236989586884.bin │ │ │ ├── Handshake.15424787030236756886.bin │ │ │ ├── Handshake.15437232101358805623.bin │ │ │ ├── Handshake.15453568942617885946.bin │ │ │ ├── Handshake.15511476665456364419.bin │ │ │ ├── Handshake.15536109336749205379.bin │ │ │ ├── Handshake.156657696701620214.bin │ │ │ ├── Handshake.15744220259092203702.bin │ │ │ ├── Handshake.15747644562524183318.bin │ │ │ ├── Handshake.15764035480274040664.bin │ │ │ ├── Handshake.15785092298493111633.bin │ │ │ ├── Handshake.15823145278767166593.bin │ │ │ ├── Handshake.15828817918393310647.bin │ │ │ ├── Handshake.15853804441626080064.bin │ │ │ ├── Handshake.15924521189391044303.bin │ │ │ ├── Handshake.15932636702503475692.bin │ │ │ ├── Handshake.15980728767105240219.bin │ │ │ ├── Handshake.16032892450728185496.bin │ │ │ ├── Handshake.16070677070745681985.bin │ │ │ ├── Handshake.16123262421179431974.bin │ │ │ ├── Handshake.16201754788736281125.bin │ │ │ ├── Handshake.16210478671713826865.bin │ │ │ ├── Handshake.1626390092489971117.bin │ │ │ ├── Handshake.16308850004059631606.bin │ │ │ ├── Handshake.16383259529830901736.bin │ │ │ ├── Handshake.16412278998098028101.bin │ │ │ ├── Handshake.16426857520717506228.bin │ │ │ ├── Handshake.16432119024468853176.bin │ │ │ ├── Handshake.1643490134021521720.bin │ │ │ ├── Handshake.16436699903170639558.bin │ │ │ ├── Handshake.16437683612303518319.bin │ │ │ ├── Handshake.16444098854362686463.bin │ │ │ ├── Handshake.16472122371040267626.bin │ │ │ ├── Handshake.16514529420505023990.bin │ │ │ ├── Handshake.16523657212788733702.bin │ │ │ ├── Handshake.16540589193778243567.bin │ │ │ ├── Handshake.16589685086502189050.bin │ │ │ ├── Handshake.16596178973076867541.bin │ │ │ ├── Handshake.16609173880091320790.bin │ │ │ ├── Handshake.16627757275148925447.bin │ │ │ ├── Handshake.16647171529249569913.bin │ │ │ ├── Handshake.16703222254862307860.bin │ │ │ ├── Handshake.16722115196302564440.bin │ │ │ ├── Handshake.16735862169122005385.bin │ │ │ ├── Handshake.16811966076719770617.bin │ │ │ ├── Handshake.16833941846957128371.bin │ │ │ ├── Handshake.16876551284119928887.bin │ │ │ ├── Handshake.1688845106119492085.bin │ │ │ ├── Handshake.16897951102744314465.bin │ │ │ ├── Handshake.16948215967012835893.bin │ │ │ ├── Handshake.16992819064390132752.bin │ │ │ ├── Handshake.17011818371765087662.bin │ │ │ ├── Handshake.17045079723342920595.bin │ │ │ ├── Handshake.17055562155747367704.bin │ │ │ ├── Handshake.17059185269347141233.bin │ │ │ ├── Handshake.17144558641001270304.bin │ │ │ ├── Handshake.17170083450142864624.bin │ │ │ ├── Handshake.1717690949369415293.bin │ │ │ ├── Handshake.17201788246676815961.bin │ │ │ ├── Handshake.17212335116719329178.bin │ │ │ ├── Handshake.17213792272579830434.bin │ │ │ ├── Handshake.17232270933043251133.bin │ │ │ ├── Handshake.17232478528388315092.bin │ │ │ ├── Handshake.17235335569215645063.bin │ │ │ ├── Handshake.17243615472388120296.bin │ │ │ ├── Handshake.17258521995883629147.bin │ │ │ ├── Handshake.17297754318680457736.bin │ │ │ ├── Handshake.17327628122216214740.bin │ │ │ ├── Handshake.17328079106849016450.bin │ │ │ ├── Handshake.17340575935546108314.bin │ │ │ ├── Handshake.17396092822317572139.bin │ │ │ ├── Handshake.17424255485062971368.bin │ │ │ ├── Handshake.17437492765421933494.bin │ │ │ ├── Handshake.17540384758876388884.bin │ │ │ ├── Handshake.17547321132119983797.bin │ │ │ ├── Handshake.17557757898202736160.bin │ │ │ ├── Handshake.17613422452194830485.bin │ │ │ ├── Handshake.17617549015880478672.bin │ │ │ ├── Handshake.17661739364750810786.bin │ │ │ ├── Handshake.17696885369015774525.bin │ │ │ ├── Handshake.17701872256997425665.bin │ │ │ ├── Handshake.17707996754987920669.bin │ │ │ ├── Handshake.17724600262439791970.bin │ │ │ ├── Handshake.17741930369821550680.bin │ │ │ ├── Handshake.17792295585508497057.bin │ │ │ ├── Handshake.17807555105284792060.bin │ │ │ ├── Handshake.17986253032725764827.bin │ │ │ ├── Handshake.17998948064626831739.bin │ │ │ ├── Handshake.18016443855650646498.bin │ │ │ ├── Handshake.18048927047726097126.bin │ │ │ ├── Handshake.18063173879318671919.bin │ │ │ ├── Handshake.18132524175804122004.bin │ │ │ ├── Handshake.18169800317578718557.bin │ │ │ ├── Handshake.18232661073919066265.bin │ │ │ ├── Handshake.18255834500943036769.bin │ │ │ ├── Handshake.18266666495466432220.bin │ │ │ ├── Handshake.18375574386254795987.bin │ │ │ ├── Handshake.18391395525380228165.bin │ │ │ ├── Handshake.18397226621308013042.bin │ │ │ ├── Handshake.18755738257883875.bin │ │ │ ├── Handshake.1928293452725324866.bin │ │ │ ├── Handshake.1936432102197506390.bin │ │ │ ├── Handshake.1990053809936248450.bin │ │ │ ├── Handshake.2027703828861302684.bin │ │ │ ├── Handshake.212219147091687617.bin │ │ │ ├── Handshake.2152889732115087441.bin │ │ │ ├── Handshake.216457176383865358.bin │ │ │ ├── Handshake.2240049362618089459.bin │ │ │ ├── Handshake.2307436573390925099.bin │ │ │ ├── Handshake.2313677203008364520.bin │ │ │ ├── Handshake.236915854650365330.bin │ │ │ ├── Handshake.2394528942117922419.bin │ │ │ ├── Handshake.2413796706176055860.bin │ │ │ ├── Handshake.2460040447535057550.bin │ │ │ ├── Handshake.2480875953640570249.bin │ │ │ ├── Handshake.2527216998239295833.bin │ │ │ ├── Handshake.2541693875114751894.bin │ │ │ ├── Handshake.2544717604075640181.bin │ │ │ ├── Handshake.2557834332224711296.bin │ │ │ ├── Handshake.2673545329900462347.bin │ │ │ ├── Handshake.2796810502847829071.bin │ │ │ ├── Handshake.2826272846341584836.bin │ │ │ ├── Handshake.2861014807371483795.bin │ │ │ ├── Handshake.2949493553066767632.bin │ │ │ ├── Handshake.2961173759902739226.bin │ │ │ ├── Handshake.2979609226092629843.bin │ │ │ ├── Handshake.2984998126444994396.bin │ │ │ ├── Handshake.298518078319368406.bin │ │ │ ├── Handshake.3014389673921418933.bin │ │ │ ├── Handshake.3014957178821188133.bin │ │ │ ├── Handshake.311760158055179110.bin │ │ │ ├── Handshake.312526042889499214.bin │ │ │ ├── Handshake.3128225394297022352.bin │ │ │ ├── Handshake.3166330578799441096.bin │ │ │ ├── Handshake.3312843528368099392.bin │ │ │ ├── Handshake.3313106910834900992.bin │ │ │ ├── Handshake.3347571752696288062.bin │ │ │ ├── Handshake.337084820905431502.bin │ │ │ ├── Handshake.3424182835622235744.bin │ │ │ ├── Handshake.3429739447374499365.bin │ │ │ ├── Handshake.3475973011125062162.bin │ │ │ ├── Handshake.3513484021335611760.bin │ │ │ ├── Handshake.3651484916918355509.bin │ │ │ ├── Handshake.3705955763815240136.bin │ │ │ ├── Handshake.3710356333193877990.bin │ │ │ ├── Handshake.3804365713197001559.bin │ │ │ ├── Handshake.3808040219747534364.bin │ │ │ ├── Handshake.3919273420495969490.bin │ │ │ ├── Handshake.3932516291045283953.bin │ │ │ ├── Handshake.4039761311411713437.bin │ │ │ ├── Handshake.4144209600586588395.bin │ │ │ ├── Handshake.4191645962065905074.bin │ │ │ ├── Handshake.41955172152373455.bin │ │ │ ├── Handshake.4218531966621319110.bin │ │ │ ├── Handshake.4241179859159128002.bin │ │ │ ├── Handshake.4249735697352582921.bin │ │ │ ├── Handshake.42758048396447472.bin │ │ │ ├── Handshake.4293087073316750727.bin │ │ │ ├── Handshake.4296382558190650032.bin │ │ │ ├── Handshake.4325811598920991662.bin │ │ │ ├── Handshake.4355816358040777333.bin │ │ │ ├── Handshake.4386518903704075196.bin │ │ │ ├── Handshake.4389944769660451751.bin │ │ │ ├── Handshake.4476635384469125163.bin │ │ │ ├── Handshake.4477750639374584176.bin │ │ │ ├── Handshake.4542241670017875095.bin │ │ │ ├── Handshake.4543184149485589730.bin │ │ │ ├── Handshake.4611628590351112109.bin │ │ │ ├── Handshake.4619114321623197837.bin │ │ │ ├── Handshake.4642615169580265307.bin │ │ │ ├── Handshake.4649155104014981666.bin │ │ │ ├── Handshake.4667273675775908022.bin │ │ │ ├── Handshake.4674721369255096757.bin │ │ │ ├── Handshake.478596588601994286.bin │ │ │ ├── Handshake.4786048730765981951.bin │ │ │ ├── Handshake.4865792012087462837.bin │ │ │ ├── Handshake.4908233617135292311.bin │ │ │ ├── Handshake.4933016559055960857.bin │ │ │ ├── Handshake.4938077362928474541.bin │ │ │ ├── Handshake.4962843938424694078.bin │ │ │ ├── Handshake.4989740266270094088.bin │ │ │ ├── Handshake.5048545998314720549.bin │ │ │ ├── Handshake.5073427320423541646.bin │ │ │ ├── Handshake.5217191805520860833.bin │ │ │ ├── Handshake.5286900913693115812.bin │ │ │ ├── Handshake.529945189212952632.bin │ │ │ ├── Handshake.5301156670834358897.bin │ │ │ ├── Handshake.5334486403455255697.bin │ │ │ ├── Handshake.5343060974765799244.bin │ │ │ ├── Handshake.5362217997294593162.bin │ │ │ ├── Handshake.5380983266882457468.bin │ │ │ ├── Handshake.5402136492075007865.bin │ │ │ ├── Handshake.5405917007365442721.bin │ │ │ ├── Handshake.5443290700947309763.bin │ │ │ ├── Handshake.5481698826224529923.bin │ │ │ ├── Handshake.556291143183377611.bin │ │ │ ├── Handshake.5586540596524415926.bin │ │ │ ├── Handshake.5594608350705202011.bin │ │ │ ├── Handshake.5603812265702676658.bin │ │ │ ├── Handshake.5604960497954348281.bin │ │ │ ├── Handshake.5659375494835764612.bin │ │ │ ├── Handshake.5663356738021631797.bin │ │ │ ├── Handshake.5707260217432481891.bin │ │ │ ├── Handshake.5716774200892842818.bin │ │ │ ├── Handshake.5830259757122116254.bin │ │ │ ├── Handshake.5837042724063548647.bin │ │ │ ├── Handshake.5871341296679804474.bin │ │ │ ├── Handshake.5874804588086026422.bin │ │ │ ├── Handshake.5945093118224632448.bin │ │ │ ├── Handshake.5947361360692291135.bin │ │ │ ├── Handshake.609922810419403201.bin │ │ │ ├── Handshake.6128290413270962414.bin │ │ │ ├── Handshake.6148392331334603742.bin │ │ │ ├── Handshake.6167545766526183896.bin │ │ │ ├── Handshake.6183457994786268025.bin │ │ │ ├── Handshake.6246254988516583397.bin │ │ │ ├── Handshake.6256301128162194777.bin │ │ │ ├── Handshake.6270507649448991536.bin │ │ │ ├── Handshake.6286086053383889700.bin │ │ │ ├── Handshake.6299110277522314252.bin │ │ │ ├── Handshake.6303189164313223915.bin │ │ │ ├── Handshake.6317949579808964373.bin │ │ │ ├── Handshake.6349375420330136752.bin │ │ │ ├── Handshake.6373804566315576832.bin │ │ │ ├── Handshake.645143445693394463.bin │ │ │ ├── Handshake.6473429051855997343.bin │ │ │ ├── Handshake.6483112328197560295.bin │ │ │ ├── Handshake.6514385179381560358.bin │ │ │ ├── Handshake.6556857782474775662.bin │ │ │ ├── Handshake.6560990876465882110.bin │ │ │ ├── Handshake.6575881671932139607.bin │ │ │ ├── Handshake.6628510697901476085.bin │ │ │ ├── Handshake.6647381434165417392.bin │ │ │ ├── Handshake.6673499158063844346.bin │ │ │ ├── Handshake.6711490333833806543.bin │ │ │ ├── Handshake.6784046683896858205.bin │ │ │ ├── Handshake.6825348629043782682.bin │ │ │ ├── Handshake.6845537131354319507.bin │ │ │ ├── Handshake.6904555378333487352.bin │ │ │ ├── Handshake.691322331639227581.bin │ │ │ ├── Handshake.6930647023716087459.bin │ │ │ ├── Handshake.6934963550557282434.bin │ │ │ ├── Handshake.706496323736965313.bin │ │ │ ├── Handshake.7139546534683738103.bin │ │ │ ├── Handshake.7140789886103116970.bin │ │ │ ├── Handshake.7165460482174603572.bin │ │ │ ├── Handshake.7169103668165722696.bin │ │ │ ├── Handshake.7204317303965803185.bin │ │ │ ├── Handshake.7215377677155798562.bin │ │ │ ├── Handshake.7239483366845560219.bin │ │ │ ├── Handshake.7247230710855987371.bin │ │ │ ├── Handshake.7307410286450529411.bin │ │ │ ├── Handshake.7315528097243481803.bin │ │ │ ├── Handshake.7346079841998135763.bin │ │ │ ├── Handshake.7346234843398406674.bin │ │ │ ├── Handshake.7417584038269759849.bin │ │ │ ├── Handshake.7455508748687829568.bin │ │ │ ├── Handshake.7465643599440370514.bin │ │ │ ├── Handshake.748961855245476356.bin │ │ │ ├── Handshake.7516591636737017402.bin │ │ │ ├── Handshake.7567177748330669261.bin │ │ │ ├── Handshake.761091977985466479.bin │ │ │ ├── Handshake.7656268277965224869.bin │ │ │ ├── Handshake.7690239762888976874.bin │ │ │ ├── Handshake.7719692407614242099.bin │ │ │ ├── Handshake.7720957275282168636.bin │ │ │ ├── Handshake.7794784808116194704.bin │ │ │ ├── Handshake.7813730008683262876.bin │ │ │ ├── Handshake.7885327095706217153.bin │ │ │ ├── Handshake.7906248215225931460.bin │ │ │ ├── Handshake.7948817873499846774.bin │ │ │ ├── Handshake.7952341792523028764.bin │ │ │ ├── Handshake.8013259530313775093.bin │ │ │ ├── Handshake.8075604299203105949.bin │ │ │ ├── Handshake.8172081604114400514.bin │ │ │ ├── Handshake.8189830343061708537.bin │ │ │ ├── Handshake.8221216873901994192.bin │ │ │ ├── Handshake.8248374086501392768.bin │ │ │ ├── Handshake.8392255840240310515.bin │ │ │ ├── Handshake.8396327429954042116.bin │ │ │ ├── Handshake.8406587813025302152.bin │ │ │ ├── Handshake.8407774444968010290.bin │ │ │ ├── Handshake.8440398803691469570.bin │ │ │ ├── Handshake.8485098093571729014.bin │ │ │ ├── Handshake.849776811515966891.bin │ │ │ ├── Handshake.8560931306029320922.bin │ │ │ ├── Handshake.864255644696956933.bin │ │ │ ├── Handshake.8693230236911388473.bin │ │ │ ├── Handshake.8729890745367494493.bin │ │ │ ├── Handshake.8860398728547306665.bin │ │ │ ├── Handshake.8867642025619914951.bin │ │ │ ├── Handshake.8904084412973289274.bin │ │ │ ├── Handshake.8969192033003128338.bin │ │ │ ├── Handshake.8971115354707129304.bin │ │ │ ├── Handshake.8984984283856126818.bin │ │ │ ├── Handshake.8991433515362915263.bin │ │ │ ├── Handshake.9069047612017088350.bin │ │ │ ├── Handshake.9089706207584821560.bin │ │ │ ├── Handshake.9240147047837819581.bin │ │ │ ├── Handshake.9243195678680727758.bin │ │ │ ├── Handshake.9252077617801921335.bin │ │ │ ├── Handshake.9297844479670622147.bin │ │ │ ├── Handshake.9311845630904179522.bin │ │ │ ├── Handshake.9312662581830733323.bin │ │ │ ├── Handshake.9317589580822515162.bin │ │ │ ├── Handshake.9429010528239790739.bin │ │ │ ├── Handshake.9454286992762375905.bin │ │ │ ├── Handshake.9525167095567049454.bin │ │ │ ├── Handshake.9550899685530869009.bin │ │ │ ├── Handshake.9745946828873281910.bin │ │ │ ├── Handshake.9818098016546753604.bin │ │ │ ├── Handshake.9850803183111560401.bin │ │ │ ├── Handshake.9890336611007943713.bin │ │ │ ├── Handshake.9921068590203068234.bin │ │ │ ├── Handshake.9967963985197802467.bin │ │ │ └── Handshake.9996393024757669485.bin │ │ └── server │ │ │ ├── tls12-client.bin │ │ │ └── tls13-client.bin │ └── fuzzers │ │ ├── client.rs │ │ ├── deframer.rs │ │ ├── fragment.rs │ │ ├── hsjoiner.rs │ │ ├── message.rs │ │ ├── persist.rs │ │ └── server.rs ├── rustls-mio │ ├── Cargo.toml │ ├── examples │ │ ├── simple_0rtt_client.rs │ │ ├── simpleclient.rs │ │ ├── tlsclient.rs │ │ ├── tlsserver.rs │ │ └── util │ │ │ └── mod.rs │ └── tests │ │ ├── badssl.rs │ │ ├── bugs.rs │ │ ├── client_suites.rs │ │ ├── common │ │ └── mod.rs │ │ ├── curves.rs │ │ ├── errors.rs │ │ ├── features.rs │ │ ├── server_suites.rs │ │ └── topsites.rs ├── src │ ├── anchors.rs │ ├── bs_debug.rs │ ├── cipher.rs │ ├── client │ │ ├── common.rs │ │ ├── handy.rs │ │ ├── hs.rs │ │ ├── mod.rs │ │ ├── tls12.rs │ │ └── tls13.rs │ ├── error.rs │ ├── handshake.rs │ ├── hash_hs.rs │ ├── key.rs │ ├── key_schedule.rs │ ├── keylog.rs │ ├── lib.rs │ ├── msgs │ │ ├── alert.rs │ │ ├── base.rs │ │ ├── ccs.rs │ │ ├── codec.rs │ │ ├── deframer.rs │ │ ├── enums.rs │ │ ├── enums_test.rs │ │ ├── fragmenter.rs │ │ ├── handshake-test.1.bin │ │ ├── handshake.rs │ │ ├── handshake_test.rs │ │ ├── hsjoiner.rs │ │ ├── macros.rs │ │ ├── message.rs │ │ ├── message_test.rs │ │ ├── mod.rs │ │ ├── persist.rs │ │ └── persist_test.rs │ ├── pemfile.rs │ ├── prf.rs │ ├── quic.rs │ ├── rand.rs │ ├── server │ │ ├── common.rs │ │ ├── handy.rs │ │ ├── hs.rs │ │ ├── mod.rs │ │ ├── tls12.rs │ │ └── tls13.rs │ ├── session.rs │ ├── sign.rs │ ├── stream.rs │ ├── suites.rs │ ├── testdata │ │ ├── cert-arstechnica.0.der │ │ ├── cert-arstechnica.1.der │ │ ├── cert-arstechnica.2.der │ │ ├── cert-duckduckgo.0.der │ │ ├── cert-duckduckgo.1.der │ │ ├── cert-github.0.der │ │ ├── cert-github.1.der │ │ ├── cert-google.0.der │ │ ├── cert-google.1.der │ │ ├── cert-google.2.der │ │ ├── cert-hn.0.der │ │ ├── cert-hn.1.der │ │ ├── cert-hn.2.der │ │ ├── cert-reddit.0.der │ │ ├── cert-reddit.1.der │ │ ├── cert-rustlang.0.der │ │ ├── cert-rustlang.1.der │ │ ├── cert-rustlang.2.der │ │ ├── cert-servo.0.der │ │ ├── cert-servo.1.der │ │ ├── cert-servo.2.der │ │ ├── cert-stackoverflow.0.der │ │ ├── cert-stackoverflow.1.der │ │ ├── cert-twitter.0.der │ │ ├── cert-twitter.1.der │ │ ├── cert-wapo.0.der │ │ ├── cert-wapo.1.der │ │ ├── cert-wapo.2.der │ │ ├── cert-wikipedia.0.der │ │ ├── cert-wikipedia.1.der │ │ ├── deframer-test.1.bin │ │ ├── deframer-test.2.bin │ │ ├── prf-result.1.bin │ │ └── prf-result.2.bin │ ├── ticketer.rs │ ├── util.rs │ ├── vecbuf.rs │ ├── verify.rs │ ├── verifybench.rs │ └── x509.rs ├── test-ca │ ├── build-a-pki.sh │ ├── ecdsa │ │ ├── ca.cert │ │ ├── ca.der │ │ ├── ca.key │ │ ├── client.cert │ │ ├── client.chain │ │ ├── client.fullchain │ │ ├── client.key │ │ ├── client.req │ │ ├── end.cert │ │ ├── end.chain │ │ ├── end.fullchain │ │ ├── end.key │ │ ├── end.req │ │ ├── inter.cert │ │ ├── inter.key │ │ ├── inter.req │ │ ├── nistp256.pem │ │ └── nistp384.pem │ ├── openssl.cnf │ └── rsa │ │ ├── ca.cert │ │ ├── ca.der │ │ ├── ca.key │ │ ├── client.cert │ │ ├── client.chain │ │ ├── client.fullchain │ │ ├── client.key │ │ ├── client.req │ │ ├── client.rsa │ │ ├── end.cert │ │ ├── end.chain │ │ ├── end.fullchain │ │ ├── end.key │ │ ├── end.req │ │ ├── end.rsa │ │ ├── inter.cert │ │ ├── inter.key │ │ └── inter.req ├── tests │ ├── api.rs │ ├── benchmarks.rs │ └── common │ │ └── mod.rs └── trytls │ ├── .gitignore │ └── runme ├── sct ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-ISC ├── LICENSE-MIT ├── README.md ├── admin │ ├── build-lcov │ ├── coverage │ ├── coverage-rustc │ └── llvm-gcov ├── sgx │ └── sct-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── lib.rs │ │ │ ├── testdata │ │ │ ├── tests.rs │ │ │ ├── tests_generated.rs │ │ │ └── tests_google.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ ├── lib.rs │ ├── testdata │ │ ├── ecdsa-prime256v1-pub.raw │ │ ├── ecdsa-secp384r1-pub.raw │ │ ├── ecdsa_p256-badsigalg-sct.bin │ │ ├── ecdsa_p256-basic-sct.bin │ │ ├── ecdsa_p256-future-sct.bin │ │ ├── ecdsa_p256-junk-sct.bin │ │ ├── ecdsa_p256-short-sct.bin │ │ ├── ecdsa_p256-version-sct.bin │ │ ├── ecdsa_p256-wrongcert-sct.bin │ │ ├── ecdsa_p256-wrongext-sct.bin │ │ ├── ecdsa_p256-wrongid-sct.bin │ │ ├── ecdsa_p256-wrongtime-sct.bin │ │ ├── ecdsa_p384-basic-sct.bin │ │ ├── ecdsa_p384-wrongcert-sct.bin │ │ ├── ecdsa_p384-wrongtime-sct.bin │ │ ├── google-cert.bin │ │ ├── google-pilot-pubkey.bin │ │ ├── google-sct0.bin │ │ ├── google-sct1.bin │ │ ├── rsa-2048-pub.raw │ │ ├── rsa-3072-pub.raw │ │ ├── rsa-4096-pub.raw │ │ ├── rsa2048-basic-sct.bin │ │ ├── rsa2048-wrongcert-sct.bin │ │ ├── rsa2048-wrongtime-sct.bin │ │ ├── rsa3072-basic-sct.bin │ │ ├── rsa3072-wrongcert-sct.bin │ │ ├── rsa3072-wrongtime-sct.bin │ │ ├── rsa4096-basic-sct.bin │ │ ├── rsa4096-wrongcert-sct.bin │ │ ├── rsa4096-wrongtime-sct.bin │ │ └── symantec-log-pubkey.bin │ ├── tests.rs │ ├── tests_generated.rs │ └── tests_google.rs └── test │ ├── ecdsa-prime256v1-priv.pem │ ├── ecdsa-prime256v1-pub.pem │ ├── ecdsa-secp384r1-priv.pem │ ├── ecdsa-secp384r1-pub.pem │ ├── mktest.py │ ├── rsa-2048-priv.pem │ ├── rsa-2048-pub.pem │ ├── rsa-3072-priv.pem │ ├── rsa-3072-pub.pem │ ├── rsa-4096-priv.pem │ └── rsa-4096-pub.pem ├── serde-json ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── appveyor.yml ├── sgx │ └── json-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── debug.rs │ │ │ ├── lib.rs │ │ │ ├── macros.rs │ │ │ ├── preserve_order.rs │ │ │ ├── regression.rs │ │ │ ├── stream.rs │ │ │ └── tests.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ ├── de.rs │ ├── error.rs │ ├── iter.rs │ ├── lib.rs │ ├── macros.rs │ ├── map.rs │ ├── number.rs │ ├── raw.rs │ ├── read.rs │ ├── ser.rs │ └── value │ │ ├── de.rs │ │ ├── from.rs │ │ ├── index.rs │ │ ├── mod.rs │ │ ├── partial_eq.rs │ │ └── ser.rs └── tests │ ├── compiletest.rs │ ├── crate │ ├── Cargo.toml │ └── test.rs │ ├── debug.rs │ ├── macros │ └── mod.rs │ ├── preserve_order.rs │ ├── regression.rs │ ├── regression │ ├── issue520.rs │ └── mod.rs │ ├── stream.rs │ ├── test.rs │ └── ui │ ├── missing_colon.rs │ ├── missing_colon.stderr │ ├── missing_value.rs │ ├── missing_value.stderr │ ├── not_found.rs │ ├── not_found.stderr │ ├── parse_expr.rs │ ├── parse_expr.stderr │ ├── parse_key.rs │ ├── parse_key.stderr │ ├── unexpected_after_array_element.rs │ ├── unexpected_after_array_element.stderr │ ├── unexpected_after_map_entry.rs │ ├── unexpected_after_map_entry.stderr │ ├── unexpected_colon.rs │ ├── unexpected_colon.stderr │ ├── unexpected_comma.rs │ └── unexpected_comma.stderr ├── serde ├── .drone.yml ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── 1-problem.md │ │ ├── 2-suggestion.md │ │ ├── 3-documentation.md │ │ ├── 4-discussion.md │ │ └── 5-other.md │ └── pull.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── appveyor.yml ├── crates-io.md ├── rustfmt.toml ├── serde │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── build.rs │ ├── crates-io.md │ └── src │ │ ├── de │ │ ├── from_primitive.rs │ │ ├── ignored_any.rs │ │ ├── impls.rs │ │ ├── mod.rs │ │ ├── utf8.rs │ │ └── value.rs │ │ ├── export.rs │ │ ├── integer128.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── private │ │ ├── de.rs │ │ ├── macros.rs │ │ ├── mod.rs │ │ └── ser.rs │ │ ├── ser │ │ ├── impls.rs │ │ ├── impossible.rs │ │ └── mod.rs │ │ └── std_error.rs ├── serde_derive │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── crates-io.md │ └── src │ │ ├── bound.rs │ │ ├── de.rs │ │ ├── dummy.rs │ │ ├── fragment.rs │ │ ├── internals │ │ ├── ast.rs │ │ ├── attr.rs │ │ ├── case.rs │ │ ├── check.rs │ │ ├── ctxt.rs │ │ ├── mod.rs │ │ └── symbol.rs │ │ ├── lib.rs │ │ ├── pretend.rs │ │ ├── ser.rs │ │ └── try.rs ├── serde_derive_internals │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── lib.rs │ └── src ├── serde_test │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── crates-io.md │ └── src │ │ ├── assert.rs │ │ ├── configure.rs │ │ ├── de.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── ser.rs │ │ └── token.rs ├── sgx │ ├── Cargo.toml │ ├── serde-sgx-test │ │ ├── Makefile │ │ ├── app │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── bin │ │ │ └── readme.txt │ │ ├── common │ │ │ └── inc │ │ │ │ ├── assert.h │ │ │ │ ├── complex.h │ │ │ │ ├── ctype.h │ │ │ │ ├── dirent.h │ │ │ │ ├── endian.h │ │ │ │ ├── errno.h │ │ │ │ ├── float.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── iso646.h │ │ │ │ ├── limits.h │ │ │ │ ├── math.h │ │ │ │ ├── mbusafecrt.h │ │ │ │ ├── poll.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── sys │ │ │ │ ├── _types.h │ │ │ │ ├── cdefs.h │ │ │ │ ├── endian.h │ │ │ │ ├── epoll.h │ │ │ │ ├── ieee.h │ │ │ │ ├── limits.h │ │ │ │ ├── sockaddr.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ ├── struct_timespec.h │ │ │ │ ├── types.h │ │ │ │ └── uio.h │ │ │ │ ├── time.h │ │ │ │ ├── unistd.h │ │ │ │ ├── wchar.h │ │ │ │ └── wctype.h │ │ ├── docker │ │ │ └── Dockerfile │ │ ├── edl │ │ │ ├── inc │ │ │ │ ├── dirent.h │ │ │ │ └── stat.h │ │ │ ├── sgx_asyncio.edl │ │ │ ├── sgx_backtrace.edl │ │ │ ├── sgx_env.edl │ │ │ ├── sgx_fd.edl │ │ │ ├── sgx_file.edl │ │ │ ├── sgx_fs.edl │ │ │ ├── sgx_mem.edl │ │ │ ├── sgx_net.edl │ │ │ ├── sgx_net_switchless.edl │ │ │ ├── sgx_pipe.edl │ │ │ ├── sgx_socket.edl │ │ │ ├── sgx_stdio.edl │ │ │ ├── sgx_sys.edl │ │ │ ├── sgx_time.edl │ │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ │ ├── Cargo.toml │ │ │ ├── Enclave.config.xml │ │ │ ├── Enclave.edl │ │ │ ├── Enclave.lds │ │ │ ├── Enclave_private.pem │ │ │ ├── Makefile │ │ │ ├── Xargo.toml │ │ │ ├── src │ │ │ │ ├── bytes.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── macros.rs │ │ │ │ ├── test_annotations.rs │ │ │ │ ├── test_borrow.rs │ │ │ │ ├── test_de.rs │ │ │ │ ├── test_gen.rs │ │ │ │ ├── test_identifier.rs │ │ │ │ ├── test_ignored_any.rs │ │ │ │ ├── test_macros.rs │ │ │ │ ├── test_remote.rs │ │ │ │ ├── test_roundtrip.rs │ │ │ │ ├── test_ser.rs │ │ │ │ ├── test_unstable.rs │ │ │ │ ├── test_value.rs │ │ │ │ └── unstable.rs │ │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ │ └── readme.txt │ └── x86_64-unknown-linux-sgx.json └── test_suite │ ├── Cargo.toml │ ├── build.rs │ ├── no_std │ ├── Cargo.toml │ └── src │ │ └── main.rs │ └── tests │ ├── bytes │ └── mod.rs │ ├── compiletest.rs │ ├── expand │ ├── de_enum.expanded.rs │ ├── de_enum.rs │ ├── default_ty_param.expanded.rs │ ├── default_ty_param.rs │ ├── generic_enum.expanded.rs │ ├── generic_enum.rs │ ├── generic_struct.expanded.rs │ ├── generic_struct.rs │ ├── generic_tuple_struct.expanded.rs │ ├── generic_tuple_struct.rs │ ├── lifetimes.expanded.rs │ ├── lifetimes.rs │ ├── named_map.expanded.rs │ ├── named_map.rs │ ├── named_tuple.expanded.rs │ ├── named_tuple.rs │ ├── named_unit.expanded.rs │ ├── named_unit.rs │ ├── ser_enum.expanded.rs │ ├── ser_enum.rs │ ├── void.expanded.rs │ └── void.rs │ ├── expandtest.rs │ ├── macros │ └── mod.rs │ ├── test_annotations.rs │ ├── test_borrow.rs │ ├── test_de.rs │ ├── test_gen.rs │ ├── test_identifier.rs │ ├── test_ignored_any.rs │ ├── test_macros.rs │ ├── test_remote.rs │ ├── test_roundtrip.rs │ ├── test_ser.rs │ ├── test_serde_path.rs │ ├── test_unstable.rs │ ├── test_value.rs │ ├── ui │ ├── borrow │ │ ├── bad_lifetimes.rs │ │ ├── bad_lifetimes.stderr │ │ ├── duplicate_lifetime.rs │ │ ├── duplicate_lifetime.stderr │ │ ├── duplicate_variant.rs │ │ ├── duplicate_variant.stderr │ │ ├── empty_lifetimes.rs │ │ ├── empty_lifetimes.stderr │ │ ├── no_lifetimes.rs │ │ ├── no_lifetimes.stderr │ │ ├── struct_variant.rs │ │ ├── struct_variant.stderr │ │ ├── wrong_lifetime.rs │ │ └── wrong_lifetime.stderr │ ├── conflict │ │ ├── adjacent-tag.rs │ │ ├── adjacent-tag.stderr │ │ ├── flatten-newtype-struct.rs │ │ ├── flatten-newtype-struct.stderr │ │ ├── flatten-tuple-struct.rs │ │ ├── flatten-tuple-struct.stderr │ │ ├── from-try-from.rs │ │ ├── from-try-from.stderr │ │ ├── internal-tag-alias.rs │ │ ├── internal-tag-alias.stderr │ │ ├── internal-tag.rs │ │ └── internal-tag.stderr │ ├── default-attribute │ │ ├── enum.rs │ │ ├── enum.stderr │ │ ├── enum_path.rs │ │ ├── enum_path.stderr │ │ ├── nameless_struct_fields.rs │ │ ├── nameless_struct_fields.stderr │ │ ├── nameless_struct_fields_path.rs │ │ └── nameless_struct_fields_path.stderr │ ├── duplicate-attribute │ │ ├── rename-and-ser.rs │ │ ├── rename-and-ser.stderr │ │ ├── rename-ser-rename-ser.rs │ │ ├── rename-ser-rename-ser.stderr │ │ ├── rename-ser-rename.rs │ │ ├── rename-ser-rename.stderr │ │ ├── rename-ser-ser.rs │ │ ├── rename-ser-ser.stderr │ │ ├── two-rename-ser.rs │ │ ├── two-rename-ser.stderr │ │ ├── with-and-serialize-with.rs │ │ └── with-and-serialize-with.stderr │ ├── enum-representation │ │ ├── content-no-tag.rs │ │ ├── content-no-tag.stderr │ │ ├── internal-tuple-variant.rs │ │ ├── internal-tuple-variant.stderr │ │ ├── untagged-and-adjacent.rs │ │ ├── untagged-and-adjacent.stderr │ │ ├── untagged-and-content.rs │ │ ├── untagged-and-content.stderr │ │ ├── untagged-and-internal.rs │ │ ├── untagged-and-internal.stderr │ │ ├── untagged-struct.rs │ │ └── untagged-struct.stderr │ ├── expected-string │ │ ├── boolean.rs │ │ ├── boolean.stderr │ │ ├── byte_character.rs │ │ ├── byte_character.stderr │ │ ├── byte_string.rs │ │ ├── byte_string.stderr │ │ ├── character.rs │ │ ├── character.stderr │ │ ├── float.rs │ │ ├── float.stderr │ │ ├── integer.rs │ │ └── integer.stderr │ ├── identifier │ │ ├── both.rs │ │ ├── both.stderr │ │ ├── field_struct.rs │ │ ├── field_struct.stderr │ │ ├── field_tuple.rs │ │ ├── field_tuple.stderr │ │ ├── newtype_not_last.rs │ │ ├── newtype_not_last.stderr │ │ ├── not_unit.rs │ │ ├── not_unit.stderr │ │ ├── other_not_last.rs │ │ ├── other_not_last.stderr │ │ ├── other_untagged.rs │ │ ├── other_untagged.stderr │ │ ├── other_variant.rs │ │ ├── other_variant.stderr │ │ ├── variant_struct.rs │ │ ├── variant_struct.stderr │ │ ├── variant_tuple.rs │ │ └── variant_tuple.stderr │ ├── malformed │ │ ├── bound.rs │ │ ├── bound.stderr │ │ ├── cut_off.rs │ │ ├── cut_off.stderr │ │ ├── not_list.rs │ │ ├── not_list.stderr │ │ ├── rename.rs │ │ └── rename.stderr │ ├── precondition │ │ ├── deserialize_de_lifetime.rs │ │ ├── deserialize_de_lifetime.stderr │ │ ├── deserialize_dst.rs │ │ ├── deserialize_dst.stderr │ │ ├── serialize_field_identifier.rs │ │ ├── serialize_field_identifier.stderr │ │ ├── serialize_variant_identifier.rs │ │ └── serialize_variant_identifier.stderr │ ├── remote │ │ ├── bad_getter.rs │ │ ├── bad_getter.stderr │ │ ├── bad_remote.rs │ │ ├── bad_remote.stderr │ │ ├── enum_getter.rs │ │ ├── enum_getter.stderr │ │ ├── missing_field.rs │ │ ├── missing_field.stderr │ │ ├── nonremote_getter.rs │ │ ├── nonremote_getter.stderr │ │ ├── unknown_field.rs │ │ ├── unknown_field.stderr │ │ ├── wrong_de.rs │ │ ├── wrong_de.stderr │ │ ├── wrong_getter.rs │ │ ├── wrong_getter.stderr │ │ ├── wrong_ser.rs │ │ └── wrong_ser.stderr │ ├── rename │ │ ├── container_unknown_rename_rule.rs │ │ ├── container_unknown_rename_rule.stderr │ │ ├── variant_unknown_rename_rule.rs │ │ └── variant_unknown_rename_rule.stderr │ ├── struct-representation │ │ ├── internally-tagged-tuple.rs │ │ ├── internally-tagged-tuple.stderr │ │ ├── internally-tagged-unit.rs │ │ └── internally-tagged-unit.stderr │ ├── transparent │ │ ├── at_most_one.rs │ │ ├── at_most_one.stderr │ │ ├── de_at_least_one.rs │ │ ├── de_at_least_one.stderr │ │ ├── enum.rs │ │ ├── enum.stderr │ │ ├── ser_at_least_one.rs │ │ ├── ser_at_least_one.stderr │ │ ├── unit_struct.rs │ │ ├── unit_struct.stderr │ │ ├── with_from.rs │ │ ├── with_from.stderr │ │ ├── with_into.rs │ │ ├── with_into.stderr │ │ ├── with_try_from.rs │ │ └── with_try_from.stderr │ ├── type-attribute │ │ ├── from.rs │ │ ├── from.stderr │ │ ├── into.rs │ │ ├── into.stderr │ │ ├── try_from.rs │ │ └── try_from.stderr │ ├── unexpected-literal │ │ ├── container.rs │ │ ├── container.stderr │ │ ├── field.rs │ │ ├── field.stderr │ │ ├── variant.rs │ │ └── variant.stderr │ ├── unknown-attribute │ │ ├── container.rs │ │ ├── container.stderr │ │ ├── field.rs │ │ ├── field.stderr │ │ ├── variant.rs │ │ └── variant.stderr │ ├── unsupported │ │ ├── union_de.rs │ │ ├── union_de.stderr │ │ ├── union_ser.rs │ │ └── union_ser.stderr │ └── with-variant │ │ ├── skip_de_newtype_field.rs │ │ ├── skip_de_newtype_field.stderr │ │ ├── skip_de_struct_field.rs │ │ ├── skip_de_struct_field.stderr │ │ ├── skip_de_tuple_field.rs │ │ ├── skip_de_tuple_field.stderr │ │ ├── skip_de_whole_variant.rs │ │ ├── skip_de_whole_variant.stderr │ │ ├── skip_ser_newtype_field.rs │ │ ├── skip_ser_newtype_field.stderr │ │ ├── skip_ser_newtype_field_if.rs │ │ ├── skip_ser_newtype_field_if.stderr │ │ ├── skip_ser_struct_field.rs │ │ ├── skip_ser_struct_field.stderr │ │ ├── skip_ser_struct_field_if.rs │ │ ├── skip_ser_struct_field_if.stderr │ │ ├── skip_ser_tuple_field.rs │ │ ├── skip_ser_tuple_field.stderr │ │ ├── skip_ser_tuple_field_if.rs │ │ ├── skip_ser_tuple_field_if.stderr │ │ ├── skip_ser_whole_variant.rs │ │ └── skip_ser_whole_variant.stderr │ └── unstable │ └── mod.rs ├── subtle ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── fuzz │ ├── .gitignore │ ├── Cargo.toml │ └── fuzzers │ │ ├── conditional_assign_i128.rs │ │ ├── conditional_assign_i8.rs │ │ ├── conditional_assign_u16.rs │ │ └── conditional_assign_u8.rs ├── sgx │ └── subtle-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ └── readme.txt │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── lib.rs │ │ │ └── tests.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ └── lib │ │ └── readme.txt ├── src │ └── lib.rs └── tests │ └── mod.rs ├── webpki-roots ├── .drone.yml ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── Xargo.toml ├── build.py ├── extra_constraints.py ├── src │ └── lib.rs └── x86_64-unknown-linux-sgx.json ├── webpki ├── .drone.yml ├── .gitattributes ├── .github │ └── pull.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── appveyor.yml ├── mk │ ├── appveyor.bat │ ├── travis.sh │ └── update-travis-yml.py ├── rustfmt.toml ├── sgx │ └── webpki-sgx-test │ │ ├── Makefile │ │ ├── app │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── main.rs │ │ ├── bin │ │ ├── readme.txt │ │ └── third-party │ │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── poll.h │ │ │ ├── setjmp.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ │ ├── enclave │ │ ├── Cargo.toml │ │ ├── Enclave.config.xml │ │ ├── Enclave.edl │ │ ├── Enclave.lds │ │ ├── Enclave_private.pem │ │ ├── Makefile │ │ ├── Xargo.toml │ │ ├── src │ │ │ ├── calendar.rs │ │ │ ├── lib.rs │ │ │ ├── name.rs │ │ │ └── signed_data.rs │ │ └── x86_64-unknown-linux-sgx.json │ │ ├── lib │ │ └── readme.txt │ │ └── test.diff ├── src │ ├── calendar.rs │ ├── cert.rs │ ├── data │ │ ├── README.md │ │ ├── alg-ecdsa-p256.der │ │ ├── alg-ecdsa-p384.der │ │ ├── alg-ecdsa-sha256.der │ │ ├── alg-ecdsa-sha384.der │ │ ├── alg-ed25519.der │ │ ├── alg-rsa-encryption.der │ │ ├── alg-rsa-pkcs1-sha256.der │ │ ├── alg-rsa-pkcs1-sha384.der │ │ ├── alg-rsa-pkcs1-sha512.der │ │ ├── alg-rsa-pss-sha256.der │ │ ├── alg-rsa-pss-sha384.der │ │ └── alg-rsa-pss-sha512.der │ ├── der.rs │ ├── error.rs │ ├── name.rs │ ├── signed_data.rs │ ├── time.rs │ ├── trust_anchor_util.rs │ ├── verify_cert.rs │ └── webpki.rs ├── tests │ ├── dns_name_tests.rs │ ├── ed25519 │ │ ├── ca.der │ │ └── ee.der │ ├── integration.rs │ ├── misc │ │ ├── serial_neg.der │ │ └── serial_zero.der │ └── netflix │ │ ├── ca.der │ │ ├── ee.der │ │ └── inter.der └── third-party │ └── chromium │ ├── LICENSE │ └── data │ └── verify_signed_data │ ├── README │ ├── ecdsa-prime256v1-sha512-spki-params-null.pem │ ├── ecdsa-prime256v1-sha512-unused-bits-signature.pem │ ├── ecdsa-prime256v1-sha512-using-ecdh-key.pem │ ├── ecdsa-prime256v1-sha512-using-ecmqv-key.pem │ ├── ecdsa-prime256v1-sha512-using-rsa-algorithm.pem │ ├── ecdsa-prime256v1-sha512-wrong-signature-format.pem │ ├── ecdsa-prime256v1-sha512.pem │ ├── ecdsa-secp384r1-sha256-corrupted-data.pem │ ├── ecdsa-secp384r1-sha256.pem │ ├── ecdsa-using-rsa-key.pem │ ├── ours │ ├── make-pss.py │ ├── priv.pem │ ├── pub.pem │ ├── rsa-pss-sha256-salt32-corrupted-data.pem │ ├── rsa-pss-sha256-salt32.pem │ ├── rsa-pss-sha384-salt48-corrupted-data.pem │ ├── rsa-pss-sha384-salt48.pem │ ├── rsa-pss-sha512-salt64-corrupted-data.pem │ └── rsa-pss-sha512-salt64.pem │ ├── rsa-pkcs1-sha1-bad-key-der-length.pem │ ├── rsa-pkcs1-sha1-bad-key-der-null.pem │ ├── rsa-pkcs1-sha1-key-params-absent.pem │ ├── rsa-pkcs1-sha1-using-pss-key-no-params.pem │ ├── rsa-pkcs1-sha1-wrong-algorithm.pem │ ├── rsa-pkcs1-sha1.pem │ ├── rsa-pkcs1-sha256-key-encoded-ber.pem │ ├── rsa-pkcs1-sha256-spki-non-null-params.pem │ ├── rsa-pkcs1-sha256-using-ecdsa-algorithm.pem │ ├── rsa-pkcs1-sha256-using-id-ea-rsa.pem │ ├── rsa-pkcs1-sha256.pem │ ├── rsa-pss-sha1-salt20-using-pss-key-no-params.pem │ ├── rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem │ ├── rsa-pss-sha1-salt20.pem │ ├── rsa-pss-sha1-wrong-salt.pem │ ├── rsa-pss-sha256-mgf1-sha512-salt33.pem │ ├── rsa-pss-sha256-salt10-using-pss-key-with-params.pem │ ├── rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem │ ├── rsa-pss-sha256-salt10.pem │ ├── rsa-using-ec-key.pem │ └── rsa2048-pkcs1-sha512.pem └── yasna ├── .drone.yml ├── .github └── pull.yml ├── .gitignore ├── .travis.yml ├── .travis ├── .gitignore ├── deploy.sh ├── deploy_key.enc └── deploy_key.pub ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── doc ├── favicon.ico ├── index.html └── rust-logo-128x128-blk-v2.png ├── sgx └── yasna-sgx-test │ ├── Makefile │ ├── app │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ └── main.rs │ ├── bin │ └── readme.txt │ ├── common │ └── inc │ │ ├── assert.h │ │ ├── complex.h │ │ ├── ctype.h │ │ ├── dirent.h │ │ ├── endian.h │ │ ├── errno.h │ │ ├── float.h │ │ ├── inttypes.h │ │ ├── iso646.h │ │ ├── limits.h │ │ ├── math.h │ │ ├── mbusafecrt.h │ │ ├── poll.h │ │ ├── setjmp.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── sys │ │ ├── _types.h │ │ ├── cdefs.h │ │ ├── endian.h │ │ ├── epoll.h │ │ ├── ieee.h │ │ ├── limits.h │ │ ├── sockaddr.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── stdint.h │ │ ├── struct_timespec.h │ │ ├── types.h │ │ └── uio.h │ │ ├── time.h │ │ ├── unistd.h │ │ ├── wchar.h │ │ └── wctype.h │ ├── edl │ ├── inc │ │ ├── dirent.h │ │ └── stat.h │ ├── sgx_asyncio.edl │ ├── sgx_backtrace.edl │ ├── sgx_env.edl │ ├── sgx_fd.edl │ ├── sgx_file.edl │ ├── sgx_fs.edl │ ├── sgx_mem.edl │ ├── sgx_net.edl │ ├── sgx_net_switchless.edl │ ├── sgx_pipe.edl │ ├── sgx_socket.edl │ ├── sgx_stdio.edl │ ├── sgx_sys.edl │ ├── sgx_time.edl │ └── sgx_tstd.edl │ ├── enclave │ ├── Cargo.toml │ ├── Enclave.config.xml │ ├── Enclave.edl │ ├── Enclave.lds │ ├── Enclave_private.pem │ ├── Makefile │ ├── Xargo.toml │ ├── src │ │ ├── lib.rs │ │ ├── oid.rs │ │ ├── reader_tests.rs │ │ ├── time.rs │ │ └── writer_tests.rs │ └── x86_64-unknown-linux-sgx.json │ └── lib │ └── readme.txt └── src ├── deserializer └── mod.rs ├── lib.rs ├── models ├── der.rs ├── mod.rs ├── oid.rs └── time.rs ├── reader ├── error.rs ├── mod.rs └── tests.rs ├── serializer └── mod.rs ├── tags └── mod.rs └── writer ├── mod.rs └── tests.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/Readme.md -------------------------------------------------------------------------------- /app/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/app/Cargo.lock -------------------------------------------------------------------------------- /app/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/app/Cargo.toml -------------------------------------------------------------------------------- /app/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/app/build.rs -------------------------------------------------------------------------------- /app/src/attestation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/app/src/attestation.rs -------------------------------------------------------------------------------- /app/src/contract_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/app/src/contract_input.rs -------------------------------------------------------------------------------- /app/src/contract_output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/app/src/contract_output.rs -------------------------------------------------------------------------------- /app/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/app/src/main.rs -------------------------------------------------------------------------------- /bin/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/client/Gemfile -------------------------------------------------------------------------------- /client/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/client/Gemfile.lock -------------------------------------------------------------------------------- /client/console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/client/console.rb -------------------------------------------------------------------------------- /docs/sgx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/docs/sgx.md -------------------------------------------------------------------------------- /enclave/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/Cargo.lock -------------------------------------------------------------------------------- /enclave/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/Cargo.toml -------------------------------------------------------------------------------- /enclave/Enclave.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/Enclave.config.xml -------------------------------------------------------------------------------- /enclave/Enclave.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/Enclave.edl -------------------------------------------------------------------------------- /enclave/Enclave.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/Enclave.lds -------------------------------------------------------------------------------- /enclave/Enclave_private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/Enclave_private.pem -------------------------------------------------------------------------------- /enclave/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/Makefile -------------------------------------------------------------------------------- /enclave/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/Xargo.toml -------------------------------------------------------------------------------- /enclave/src/cert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/src/cert.rs -------------------------------------------------------------------------------- /enclave/src/contracts/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/src/contracts/assets.rs -------------------------------------------------------------------------------- /enclave/src/contracts/balance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/src/contracts/balance.rs -------------------------------------------------------------------------------- /enclave/src/contracts/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/src/contracts/mod.rs -------------------------------------------------------------------------------- /enclave/src/cryptography/aead.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/src/cryptography/aead.rs -------------------------------------------------------------------------------- /enclave/src/cryptography/ecdh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/src/cryptography/ecdh.rs -------------------------------------------------------------------------------- /enclave/src/cryptography/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/src/cryptography/mod.rs -------------------------------------------------------------------------------- /enclave/src/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/src/hex.rs -------------------------------------------------------------------------------- /enclave/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/src/lib.rs -------------------------------------------------------------------------------- /enclave/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/enclave/src/types.rs -------------------------------------------------------------------------------- /lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /memchr-nostd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/.gitignore -------------------------------------------------------------------------------- /memchr-nostd/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/COPYING -------------------------------------------------------------------------------- /memchr-nostd/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/Cargo.toml -------------------------------------------------------------------------------- /memchr-nostd/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/LICENSE-MIT -------------------------------------------------------------------------------- /memchr-nostd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/README.md -------------------------------------------------------------------------------- /memchr-nostd/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/UNLICENSE -------------------------------------------------------------------------------- /memchr-nostd/bench/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/bench/Cargo.toml -------------------------------------------------------------------------------- /memchr-nostd/bench/data/sherlock-holmes-tiny.txt: -------------------------------------------------------------------------------- 1 | Mr. Sherlock Holmes, who was usually very late in the mornings, save 2 | -------------------------------------------------------------------------------- /memchr-nostd/bench/src/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/bench/src/bench.rs -------------------------------------------------------------------------------- /memchr-nostd/bench/src/imp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/bench/src/imp.rs -------------------------------------------------------------------------------- /memchr-nostd/bench/src/inputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/bench/src/inputs.rs -------------------------------------------------------------------------------- /memchr-nostd/bench/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/bench/src/lib.rs -------------------------------------------------------------------------------- /memchr-nostd/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/build.rs -------------------------------------------------------------------------------- /memchr-nostd/rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 79 2 | use_small_heuristics = "max" 3 | -------------------------------------------------------------------------------- /memchr-nostd/src/c.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/c.rs -------------------------------------------------------------------------------- /memchr-nostd/src/fallback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/fallback.rs -------------------------------------------------------------------------------- /memchr-nostd/src/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/iter.rs -------------------------------------------------------------------------------- /memchr-nostd/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/lib.rs -------------------------------------------------------------------------------- /memchr-nostd/src/naive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/naive.rs -------------------------------------------------------------------------------- /memchr-nostd/src/tests/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/tests/iter.rs -------------------------------------------------------------------------------- /memchr-nostd/src/tests/memchr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/tests/memchr.rs -------------------------------------------------------------------------------- /memchr-nostd/src/tests/miri.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/tests/miri.rs -------------------------------------------------------------------------------- /memchr-nostd/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/tests/mod.rs -------------------------------------------------------------------------------- /memchr-nostd/src/x86/avx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/x86/avx.rs -------------------------------------------------------------------------------- /memchr-nostd/src/x86/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/x86/mod.rs -------------------------------------------------------------------------------- /memchr-nostd/src/x86/sse2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/x86/sse2.rs -------------------------------------------------------------------------------- /memchr-nostd/src/x86/sse42.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/memchr-nostd/src/x86/sse42.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | nightly-2019-11-25 -------------------------------------------------------------------------------- /scripts/console.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/scripts/console.sh -------------------------------------------------------------------------------- /scripts/dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/scripts/dataset.csv -------------------------------------------------------------------------------- /scripts/gen_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/scripts/gen_dataset.py -------------------------------------------------------------------------------- /scripts/query.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/scripts/query.csv -------------------------------------------------------------------------------- /vendor/bitvec/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/.drone.yml -------------------------------------------------------------------------------- /vendor/bitvec/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/.editorconfig -------------------------------------------------------------------------------- /vendor/bitvec/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/.github/pull.yml -------------------------------------------------------------------------------- /vendor/bitvec/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /vendor/bitvec/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bitvec/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/.travis.yml -------------------------------------------------------------------------------- /vendor/bitvec/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/AUTHORS.txt -------------------------------------------------------------------------------- /vendor/bitvec/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/bitvec/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/bitvec/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/bitvec/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/Cargo.toml -------------------------------------------------------------------------------- /vendor/bitvec/Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/Justfile -------------------------------------------------------------------------------- /vendor/bitvec/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/LICENSE.txt -------------------------------------------------------------------------------- /vendor/bitvec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/README.md -------------------------------------------------------------------------------- /vendor/bitvec/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/ROADMAP.md -------------------------------------------------------------------------------- /vendor/bitvec/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/Xargo.toml -------------------------------------------------------------------------------- /vendor/bitvec/benches/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/benches/macros.rs -------------------------------------------------------------------------------- /vendor/bitvec/benches/slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/benches/slice.rs -------------------------------------------------------------------------------- /vendor/bitvec/doc/Atomicity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/doc/Atomicity.md -------------------------------------------------------------------------------- /vendor/bitvec/doc/Bit Patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/doc/Bit Patterns.md -------------------------------------------------------------------------------- /vendor/bitvec/examples/sieve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/examples/sieve.rs -------------------------------------------------------------------------------- /vendor/bitvec/examples/tour.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/examples/tour.rs -------------------------------------------------------------------------------- /vendor/bitvec/sgx/bitvec-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/bitvec/sgx/bitvec-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/bitvec/src/atomic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/atomic.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/bits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/bits.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/boxed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/boxed.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/cursor.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/domain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/domain.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/lib.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/macros.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/pointer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/pointer.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/prelude.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/serdes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/serdes.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/slice.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/store.rs -------------------------------------------------------------------------------- /vendor/bitvec/src/vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/src/vec.rs -------------------------------------------------------------------------------- /vendor/bitvec/tests/issue_10.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/tests/issue_10.rs -------------------------------------------------------------------------------- /vendor/bitvec/tests/issue_15.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/tests/issue_15.rs -------------------------------------------------------------------------------- /vendor/bitvec/tests/readme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/tests/readme.rs -------------------------------------------------------------------------------- /vendor/bitvec/tests/serdes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/bitvec/tests/serdes.rs -------------------------------------------------------------------------------- /vendor/byte-slice-cast/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byte-slice-cast/.drone.yml -------------------------------------------------------------------------------- /vendor/byte-slice-cast/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /vendor/byte-slice-cast/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byte-slice-cast/.travis.yml -------------------------------------------------------------------------------- /vendor/byte-slice-cast/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byte-slice-cast/Cargo.toml -------------------------------------------------------------------------------- /vendor/byte-slice-cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byte-slice-cast/LICENSE -------------------------------------------------------------------------------- /vendor/byte-slice-cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byte-slice-cast/README.md -------------------------------------------------------------------------------- /vendor/byte-slice-cast/sgx/byte-slice-cast-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/byte-slice-cast/sgx/byte-slice-cast-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/byte-slice-cast/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byte-slice-cast/src/lib.rs -------------------------------------------------------------------------------- /vendor/byteorder/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/.drone.yml -------------------------------------------------------------------------------- /vendor/byteorder/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/.github/pull.yml -------------------------------------------------------------------------------- /vendor/byteorder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/.gitignore -------------------------------------------------------------------------------- /vendor/byteorder/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/.travis.yml -------------------------------------------------------------------------------- /vendor/byteorder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/byteorder/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/COPYING -------------------------------------------------------------------------------- /vendor/byteorder/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/Cargo.toml -------------------------------------------------------------------------------- /vendor/byteorder/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/byteorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/README.md -------------------------------------------------------------------------------- /vendor/byteorder/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/UNLICENSE -------------------------------------------------------------------------------- /vendor/byteorder/benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/benches/bench.rs -------------------------------------------------------------------------------- /vendor/byteorder/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/build.rs -------------------------------------------------------------------------------- /vendor/byteorder/ci/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/ci/script.sh -------------------------------------------------------------------------------- /vendor/byteorder/sgx/byteorder-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/byteorder/sgx/byteorder-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/byteorder/src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/src/io.rs -------------------------------------------------------------------------------- /vendor/byteorder/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/byteorder/src/lib.rs -------------------------------------------------------------------------------- /vendor/chrono/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/.github/pull.yml -------------------------------------------------------------------------------- /vendor/chrono/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /vendor/chrono/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/.travis.yml -------------------------------------------------------------------------------- /vendor/chrono/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/AUTHORS.txt -------------------------------------------------------------------------------- /vendor/chrono/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/chrono/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/Cargo.toml -------------------------------------------------------------------------------- /vendor/chrono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/LICENSE.txt -------------------------------------------------------------------------------- /vendor/chrono/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/Makefile -------------------------------------------------------------------------------- /vendor/chrono/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/README.md -------------------------------------------------------------------------------- /vendor/chrono/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/appveyor.yml -------------------------------------------------------------------------------- /vendor/chrono/ci/fix-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/ci/fix-readme.sh -------------------------------------------------------------------------------- /vendor/chrono/ci/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/ci/travis.sh -------------------------------------------------------------------------------- /vendor/chrono/src/date.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/date.rs -------------------------------------------------------------------------------- /vendor/chrono/src/datetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/datetime.rs -------------------------------------------------------------------------------- /vendor/chrono/src/div.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/div.rs -------------------------------------------------------------------------------- /vendor/chrono/src/format/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/format/mod.rs -------------------------------------------------------------------------------- /vendor/chrono/src/format/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/format/parse.rs -------------------------------------------------------------------------------- /vendor/chrono/src/format/parsed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/format/parsed.rs -------------------------------------------------------------------------------- /vendor/chrono/src/format/scan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/format/scan.rs -------------------------------------------------------------------------------- /vendor/chrono/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/lib.rs -------------------------------------------------------------------------------- /vendor/chrono/src/naive/date.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/naive/date.rs -------------------------------------------------------------------------------- /vendor/chrono/src/naive/isoweek.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/naive/isoweek.rs -------------------------------------------------------------------------------- /vendor/chrono/src/naive/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/naive/time.rs -------------------------------------------------------------------------------- /vendor/chrono/src/offset/fixed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/offset/fixed.rs -------------------------------------------------------------------------------- /vendor/chrono/src/offset/local.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/offset/local.rs -------------------------------------------------------------------------------- /vendor/chrono/src/offset/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/offset/mod.rs -------------------------------------------------------------------------------- /vendor/chrono/src/offset/utc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/offset/utc.rs -------------------------------------------------------------------------------- /vendor/chrono/src/oldtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/oldtime.rs -------------------------------------------------------------------------------- /vendor/chrono/src/round.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/chrono/src/round.rs -------------------------------------------------------------------------------- /vendor/cryptocorrosion/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/cryptocorrosion/.drone.yml -------------------------------------------------------------------------------- /vendor/cryptocorrosion/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /target/ 3 | **/*.rs.bk 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /vendor/cryptocorrosion/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/cryptocorrosion/.travis.yml -------------------------------------------------------------------------------- /vendor/cryptocorrosion/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/cryptocorrosion/Cargo.toml -------------------------------------------------------------------------------- /vendor/cryptocorrosion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/cryptocorrosion/README.md -------------------------------------------------------------------------------- /vendor/cryptocorrosion/sgx/cryptocorrosion-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/cryptocorrosion/sgx/cryptocorrosion-sgx-test/enclave/src/data: -------------------------------------------------------------------------------- 1 | ../../../../hashes/blake/tests/data -------------------------------------------------------------------------------- /vendor/cryptocorrosion/sgx/cryptocorrosion-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/cryptocorrosion/utils-simd/crypto-simd/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/getrandom/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/.drone.yml -------------------------------------------------------------------------------- /vendor/getrandom/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/.github/pull.yml -------------------------------------------------------------------------------- /vendor/getrandom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/.gitignore -------------------------------------------------------------------------------- /vendor/getrandom/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/.travis.yml -------------------------------------------------------------------------------- /vendor/getrandom/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/getrandom/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/Cargo.toml -------------------------------------------------------------------------------- /vendor/getrandom/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/getrandom/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/getrandom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/README.md -------------------------------------------------------------------------------- /vendor/getrandom/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/appveyor.yml -------------------------------------------------------------------------------- /vendor/getrandom/benches/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/benches/mod.rs -------------------------------------------------------------------------------- /vendor/getrandom/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/build.rs -------------------------------------------------------------------------------- /vendor/getrandom/sgx/getrandom-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/getrandom/sgx/getrandom-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/getrandom/src/cloudabi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/cloudabi.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/dummy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/dummy.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/error.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/freebsd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/freebsd.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/fuchsia.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/fuchsia.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/ios.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/ios.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/lib.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/macos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/macos.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/openbsd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/openbsd.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/rdrand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/rdrand.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/use_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/use_file.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/util.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/util_libc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/util_libc.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/wasi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/wasi.rs -------------------------------------------------------------------------------- /vendor/getrandom/src/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/src/windows.rs -------------------------------------------------------------------------------- /vendor/getrandom/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/getrandom/tests/mod.rs -------------------------------------------------------------------------------- /vendor/hmac-drbg/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/hmac-drbg/.drone.yml -------------------------------------------------------------------------------- /vendor/hmac-drbg/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/hmac-drbg/.github/pull.yml -------------------------------------------------------------------------------- /vendor/hmac-drbg/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /vendor/hmac-drbg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/hmac-drbg/.travis.yml -------------------------------------------------------------------------------- /vendor/hmac-drbg/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/hmac-drbg/Cargo.toml -------------------------------------------------------------------------------- /vendor/hmac-drbg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/hmac-drbg/LICENSE -------------------------------------------------------------------------------- /vendor/hmac-drbg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/hmac-drbg/README.md -------------------------------------------------------------------------------- /vendor/hmac-drbg/sgx/hmac-drbg-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/hmac-drbg/sgx/hmac-drbg-sgx-test/enclave/src/fixtures: -------------------------------------------------------------------------------- 1 | ../../../../tests/fixtures -------------------------------------------------------------------------------- /vendor/hmac-drbg/sgx/hmac-drbg-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/hmac-drbg/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/hmac-drbg/src/lib.rs -------------------------------------------------------------------------------- /vendor/hmac-drbg/tests/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/hmac-drbg/tests/lib.rs -------------------------------------------------------------------------------- /vendor/indexmap/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/.drone.yml -------------------------------------------------------------------------------- /vendor/indexmap/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/.github/pull.yml -------------------------------------------------------------------------------- /vendor/indexmap/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /vendor/indexmap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/.travis.yml -------------------------------------------------------------------------------- /vendor/indexmap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/Cargo.toml -------------------------------------------------------------------------------- /vendor/indexmap/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/indexmap/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/indexmap/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/README.rst -------------------------------------------------------------------------------- /vendor/indexmap/benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/benches/bench.rs -------------------------------------------------------------------------------- /vendor/indexmap/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/build.rs -------------------------------------------------------------------------------- /vendor/indexmap/sgx/indexmap-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/indexmap/sgx/indexmap-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/indexmap/src/equivalent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/src/equivalent.rs -------------------------------------------------------------------------------- /vendor/indexmap/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/src/lib.rs -------------------------------------------------------------------------------- /vendor/indexmap/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/src/macros.rs -------------------------------------------------------------------------------- /vendor/indexmap/src/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/src/map.rs -------------------------------------------------------------------------------- /vendor/indexmap/src/rayon/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/src/rayon/map.rs -------------------------------------------------------------------------------- /vendor/indexmap/src/rayon/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/src/rayon/mod.rs -------------------------------------------------------------------------------- /vendor/indexmap/src/rayon/set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/src/rayon/set.rs -------------------------------------------------------------------------------- /vendor/indexmap/src/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/src/serde.rs -------------------------------------------------------------------------------- /vendor/indexmap/src/set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/src/set.rs -------------------------------------------------------------------------------- /vendor/indexmap/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/src/util.rs -------------------------------------------------------------------------------- /vendor/indexmap/tests/quick.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/tests/quick.rs -------------------------------------------------------------------------------- /vendor/indexmap/tests/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/tests/serde.rs -------------------------------------------------------------------------------- /vendor/indexmap/tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/indexmap/tests/tests.rs -------------------------------------------------------------------------------- /vendor/itoa/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/.drone.yml -------------------------------------------------------------------------------- /vendor/itoa/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/.github/pull.yml -------------------------------------------------------------------------------- /vendor/itoa/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /vendor/itoa/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/.travis.yml -------------------------------------------------------------------------------- /vendor/itoa/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/Cargo.toml -------------------------------------------------------------------------------- /vendor/itoa/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/itoa/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/itoa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/README.md -------------------------------------------------------------------------------- /vendor/itoa/benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/benches/bench.rs -------------------------------------------------------------------------------- /vendor/itoa/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/performance.png -------------------------------------------------------------------------------- /vendor/itoa/sgx/itoa-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/itoa/sgx/itoa-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/itoa/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/src/lib.rs -------------------------------------------------------------------------------- /vendor/itoa/src/udiv128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/src/udiv128.rs -------------------------------------------------------------------------------- /vendor/itoa/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/itoa/tests/test.rs -------------------------------------------------------------------------------- /vendor/libsecp256k1/.arcconfig: -------------------------------------------------------------------------------- 1 | { 2 | "phabricator.uri" : "https://source.that.world/" 3 | } -------------------------------------------------------------------------------- /vendor/libsecp256k1/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/.drone.yml -------------------------------------------------------------------------------- /vendor/libsecp256k1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/.editorconfig -------------------------------------------------------------------------------- /vendor/libsecp256k1/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | *.swp 5 | /.idea 6 | -------------------------------------------------------------------------------- /vendor/libsecp256k1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/.travis.yml -------------------------------------------------------------------------------- /vendor/libsecp256k1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/Cargo.toml -------------------------------------------------------------------------------- /vendor/libsecp256k1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/LICENSE -------------------------------------------------------------------------------- /vendor/libsecp256k1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/Makefile -------------------------------------------------------------------------------- /vendor/libsecp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/README.md -------------------------------------------------------------------------------- /vendor/libsecp256k1/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/Xargo.toml -------------------------------------------------------------------------------- /vendor/libsecp256k1/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/shell.nix -------------------------------------------------------------------------------- /vendor/libsecp256k1/src/der.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/src/der.rs -------------------------------------------------------------------------------- /vendor/libsecp256k1/src/ecdh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/src/ecdh.rs -------------------------------------------------------------------------------- /vendor/libsecp256k1/src/ecdsa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/src/ecdsa.rs -------------------------------------------------------------------------------- /vendor/libsecp256k1/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/src/error.rs -------------------------------------------------------------------------------- /vendor/libsecp256k1/src/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/src/field.rs -------------------------------------------------------------------------------- /vendor/libsecp256k1/src/group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/src/group.rs -------------------------------------------------------------------------------- /vendor/libsecp256k1/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/libsecp256k1/src/lib.rs -------------------------------------------------------------------------------- /vendor/log/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/.drone.yml -------------------------------------------------------------------------------- /vendor/log/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/.github/pull.yml -------------------------------------------------------------------------------- /vendor/log/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /vendor/log/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/log/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/Cargo.toml -------------------------------------------------------------------------------- /vendor/log/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/log/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/README.md -------------------------------------------------------------------------------- /vendor/log/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/build.rs -------------------------------------------------------------------------------- /vendor/log/sgx/log-max-level-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/log/sgx/log-max-level-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/log/sgx/log-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/log/sgx/log-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/log/src/kv/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/src/kv/error.rs -------------------------------------------------------------------------------- /vendor/log/src/kv/key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/src/kv/key.rs -------------------------------------------------------------------------------- /vendor/log/src/kv/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/src/kv/mod.rs -------------------------------------------------------------------------------- /vendor/log/src/kv/source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/src/kv/source.rs -------------------------------------------------------------------------------- /vendor/log/src/kv/value/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/src/kv/value/impls.rs -------------------------------------------------------------------------------- /vendor/log/src/kv/value/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/src/kv/value/mod.rs -------------------------------------------------------------------------------- /vendor/log/src/kv/value/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/src/kv/value/test.rs -------------------------------------------------------------------------------- /vendor/log/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/src/lib.rs -------------------------------------------------------------------------------- /vendor/log/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/src/macros.rs -------------------------------------------------------------------------------- /vendor/log/src/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/src/serde.rs -------------------------------------------------------------------------------- /vendor/log/tests/filters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/log/tests/filters.rs -------------------------------------------------------------------------------- /vendor/num-bigint/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/.drone.yml -------------------------------------------------------------------------------- /vendor/num-bigint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/.gitignore -------------------------------------------------------------------------------- /vendor/num-bigint/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/.travis.yml -------------------------------------------------------------------------------- /vendor/num-bigint/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/Cargo.toml -------------------------------------------------------------------------------- /vendor/num-bigint/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/num-bigint/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/num-bigint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/README.md -------------------------------------------------------------------------------- /vendor/num-bigint/RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/RELEASES.md -------------------------------------------------------------------------------- /vendor/num-bigint/benches/gcd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/benches/gcd.rs -------------------------------------------------------------------------------- /vendor/num-bigint/bors.toml: -------------------------------------------------------------------------------- 1 | status = [ 2 | "continuous-integration/travis-ci/push", 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/num-bigint/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/build.rs -------------------------------------------------------------------------------- /vendor/num-bigint/ci/rustup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/ci/rustup.sh -------------------------------------------------------------------------------- /vendor/num-bigint/sgx/num-bigint-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/num-bigint/sgx/num-bigint-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/num-bigint/src/bigint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/src/bigint.rs -------------------------------------------------------------------------------- /vendor/num-bigint/src/bigrand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/src/bigrand.rs -------------------------------------------------------------------------------- /vendor/num-bigint/src/biguint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/src/biguint.rs -------------------------------------------------------------------------------- /vendor/num-bigint/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/src/lib.rs -------------------------------------------------------------------------------- /vendor/num-bigint/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/src/macros.rs -------------------------------------------------------------------------------- /vendor/num-bigint/src/monty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/src/monty.rs -------------------------------------------------------------------------------- /vendor/num-bigint/tests/rand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/tests/rand.rs -------------------------------------------------------------------------------- /vendor/num-bigint/tests/roots.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/tests/roots.rs -------------------------------------------------------------------------------- /vendor/num-bigint/tests/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-bigint/tests/serde.rs -------------------------------------------------------------------------------- /vendor/num-integer/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-integer/.drone.yml -------------------------------------------------------------------------------- /vendor/num-integer/.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target 3 | -------------------------------------------------------------------------------- /vendor/num-integer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-integer/.travis.yml -------------------------------------------------------------------------------- /vendor/num-integer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-integer/Cargo.toml -------------------------------------------------------------------------------- /vendor/num-integer/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-integer/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/num-integer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-integer/README.md -------------------------------------------------------------------------------- /vendor/num-integer/RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-integer/RELEASES.md -------------------------------------------------------------------------------- /vendor/num-integer/bors.toml: -------------------------------------------------------------------------------- 1 | status = [ 2 | "continuous-integration/travis-ci/push", 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/num-integer/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-integer/build.rs -------------------------------------------------------------------------------- /vendor/num-integer/ci/rustup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-integer/ci/rustup.sh -------------------------------------------------------------------------------- /vendor/num-integer/sgx/num-integer-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/num-integer/sgx/num-integer-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/num-integer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-integer/src/lib.rs -------------------------------------------------------------------------------- /vendor/num-integer/src/roots.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-integer/src/roots.rs -------------------------------------------------------------------------------- /vendor/num-traits/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/.drone.yml -------------------------------------------------------------------------------- /vendor/num-traits/.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target 3 | -------------------------------------------------------------------------------- /vendor/num-traits/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/.travis.yml -------------------------------------------------------------------------------- /vendor/num-traits/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/Cargo.toml -------------------------------------------------------------------------------- /vendor/num-traits/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/num-traits/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/num-traits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/README.md -------------------------------------------------------------------------------- /vendor/num-traits/RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/RELEASES.md -------------------------------------------------------------------------------- /vendor/num-traits/bors.toml: -------------------------------------------------------------------------------- 1 | status = [ 2 | "continuous-integration/travis-ci/push", 3 | ] 4 | -------------------------------------------------------------------------------- /vendor/num-traits/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/build.rs -------------------------------------------------------------------------------- /vendor/num-traits/ci/rustup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/ci/rustup.sh -------------------------------------------------------------------------------- /vendor/num-traits/sgx/num-traits-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/num-traits/sgx/num-traits-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/num-traits/src/bounds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/src/bounds.rs -------------------------------------------------------------------------------- /vendor/num-traits/src/cast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/src/cast.rs -------------------------------------------------------------------------------- /vendor/num-traits/src/float.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/src/float.rs -------------------------------------------------------------------------------- /vendor/num-traits/src/int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/src/int.rs -------------------------------------------------------------------------------- /vendor/num-traits/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/src/lib.rs -------------------------------------------------------------------------------- /vendor/num-traits/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/src/macros.rs -------------------------------------------------------------------------------- /vendor/num-traits/src/ops/inv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/src/ops/inv.rs -------------------------------------------------------------------------------- /vendor/num-traits/src/ops/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/src/ops/mod.rs -------------------------------------------------------------------------------- /vendor/num-traits/src/pow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/src/pow.rs -------------------------------------------------------------------------------- /vendor/num-traits/src/real.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/src/real.rs -------------------------------------------------------------------------------- /vendor/num-traits/src/sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/src/sign.rs -------------------------------------------------------------------------------- /vendor/num-traits/tests/cast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/num-traits/tests/cast.rs -------------------------------------------------------------------------------- /vendor/parity-scale-codec/sgx/parity-scale-codec-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/parity-scale-codec/sgx/parity-scale-codec-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/rand/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/.drone.yml -------------------------------------------------------------------------------- /vendor/rand/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/.github/pull.yml -------------------------------------------------------------------------------- /vendor/rand/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/.gitignore -------------------------------------------------------------------------------- /vendor/rand/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/.travis.yml -------------------------------------------------------------------------------- /vendor/rand/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/rand/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/COPYRIGHT -------------------------------------------------------------------------------- /vendor/rand/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/Cargo.toml -------------------------------------------------------------------------------- /vendor/rand/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/rand/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/rand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/README.md -------------------------------------------------------------------------------- /vendor/rand/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/Xargo.toml -------------------------------------------------------------------------------- /vendor/rand/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/appveyor.yml -------------------------------------------------------------------------------- /vendor/rand/benches/misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/benches/misc.rs -------------------------------------------------------------------------------- /vendor/rand/benches/seq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/benches/seq.rs -------------------------------------------------------------------------------- /vendor/rand/benches/weighted.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/benches/weighted.rs -------------------------------------------------------------------------------- /vendor/rand/rand_core/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_core/COPYRIGHT -------------------------------------------------------------------------------- /vendor/rand/rand_core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_core/Cargo.toml -------------------------------------------------------------------------------- /vendor/rand/rand_core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_core/README.md -------------------------------------------------------------------------------- /vendor/rand/rand_core/src/le.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_core/src/le.rs -------------------------------------------------------------------------------- /vendor/rand/rand_core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_core/src/lib.rs -------------------------------------------------------------------------------- /vendor/rand/rand_core/src/os.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_core/src/os.rs -------------------------------------------------------------------------------- /vendor/rand/rand_distr/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_distr/COPYRIGHT -------------------------------------------------------------------------------- /vendor/rand/rand_distr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_distr/README.md -------------------------------------------------------------------------------- /vendor/rand/rand_hc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_hc/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/rand/rand_hc/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_hc/COPYRIGHT -------------------------------------------------------------------------------- /vendor/rand/rand_hc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_hc/Cargo.toml -------------------------------------------------------------------------------- /vendor/rand/rand_hc/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_hc/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/rand/rand_hc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_hc/README.md -------------------------------------------------------------------------------- /vendor/rand/rand_hc/src/hc128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_hc/src/hc128.rs -------------------------------------------------------------------------------- /vendor/rand/rand_hc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_hc/src/lib.rs -------------------------------------------------------------------------------- /vendor/rand/rand_isaac/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_isaac/COPYRIGHT -------------------------------------------------------------------------------- /vendor/rand/rand_isaac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_isaac/README.md -------------------------------------------------------------------------------- /vendor/rand/rand_os/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_os/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/rand/rand_os/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_os/COPYRIGHT -------------------------------------------------------------------------------- /vendor/rand/rand_os/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_os/Cargo.toml -------------------------------------------------------------------------------- /vendor/rand/rand_os/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_os/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/rand/rand_os/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_os/README.md -------------------------------------------------------------------------------- /vendor/rand/rand_os/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_os/src/lib.rs -------------------------------------------------------------------------------- /vendor/rand/rand_pcg/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_pcg/COPYRIGHT -------------------------------------------------------------------------------- /vendor/rand/rand_pcg/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_pcg/Cargo.toml -------------------------------------------------------------------------------- /vendor/rand/rand_pcg/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_pcg/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/rand/rand_pcg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_pcg/README.md -------------------------------------------------------------------------------- /vendor/rand/rand_pcg/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rand_pcg/src/lib.rs -------------------------------------------------------------------------------- /vendor/rand/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/rustfmt.toml -------------------------------------------------------------------------------- /vendor/rand/sgx/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/sgx/Cargo.toml -------------------------------------------------------------------------------- /vendor/rand/sgx/rand-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/rand/sgx/rand-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/rand/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/src/lib.rs -------------------------------------------------------------------------------- /vendor/rand/src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/src/prelude.rs -------------------------------------------------------------------------------- /vendor/rand/src/rngs/entropy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/src/rngs/entropy.rs -------------------------------------------------------------------------------- /vendor/rand/src/rngs/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/src/rngs/mock.rs -------------------------------------------------------------------------------- /vendor/rand/src/rngs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/src/rngs/mod.rs -------------------------------------------------------------------------------- /vendor/rand/src/rngs/small.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/src/rngs/small.rs -------------------------------------------------------------------------------- /vendor/rand/src/rngs/std.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/src/rngs/std.rs -------------------------------------------------------------------------------- /vendor/rand/src/rngs/thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/src/rngs/thread.rs -------------------------------------------------------------------------------- /vendor/rand/src/seq/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/src/seq/index.rs -------------------------------------------------------------------------------- /vendor/rand/src/seq/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/src/seq/mod.rs -------------------------------------------------------------------------------- /vendor/rand/utils/ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/utils/ci/install.sh -------------------------------------------------------------------------------- /vendor/rand/utils/ci/miri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/utils/ci/miri.sh -------------------------------------------------------------------------------- /vendor/rand/utils/ci/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rand/utils/ci/script.sh -------------------------------------------------------------------------------- /vendor/ring/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/.clang-format -------------------------------------------------------------------------------- /vendor/ring/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/.drone.yml -------------------------------------------------------------------------------- /vendor/ring/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/.editorconfig -------------------------------------------------------------------------------- /vendor/ring/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/.gitattributes -------------------------------------------------------------------------------- /vendor/ring/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/.github/pull.yml -------------------------------------------------------------------------------- /vendor/ring/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/.gitignore -------------------------------------------------------------------------------- /vendor/ring/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/.travis.yml -------------------------------------------------------------------------------- /vendor/ring/BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/BUILDING.md -------------------------------------------------------------------------------- /vendor/ring/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/Cargo.toml -------------------------------------------------------------------------------- /vendor/ring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/LICENSE -------------------------------------------------------------------------------- /vendor/ring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/README.md -------------------------------------------------------------------------------- /vendor/ring/STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/STYLE.md -------------------------------------------------------------------------------- /vendor/ring/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/appveyor.yml -------------------------------------------------------------------------------- /vendor/ring/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/build.rs -------------------------------------------------------------------------------- /vendor/ring/crypto/.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-language=C 2 | -------------------------------------------------------------------------------- /vendor/ring/crypto/cpu-intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/crypto/cpu-intel.c -------------------------------------------------------------------------------- /vendor/ring/crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/crypto/crypto.c -------------------------------------------------------------------------------- /vendor/ring/crypto/fipsmodule/.gitattributes: -------------------------------------------------------------------------------- 1 | *.inl linguist-language=C 2 | -------------------------------------------------------------------------------- /vendor/ring/crypto/fipsmodule/ec/.gitattributes: -------------------------------------------------------------------------------- 1 | ecp_nistz256_table.inl linguist-generated=true 2 | -------------------------------------------------------------------------------- /vendor/ring/crypto/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/crypto/internal.h -------------------------------------------------------------------------------- /vendor/ring/crypto/limbs/limbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/crypto/limbs/limbs.c -------------------------------------------------------------------------------- /vendor/ring/crypto/limbs/limbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/crypto/limbs/limbs.h -------------------------------------------------------------------------------- /vendor/ring/crypto/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/crypto/mem.c -------------------------------------------------------------------------------- /vendor/ring/crypto/perlasm/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pl linguist-language=Perl 2 | 3 | -------------------------------------------------------------------------------- /vendor/ring/doc/ecdh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/doc/ecdh.pdf -------------------------------------------------------------------------------- /vendor/ring/doc/ecdsa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/doc/ecdsa.pdf -------------------------------------------------------------------------------- /vendor/ring/doc/link-to-readme.md: -------------------------------------------------------------------------------- 1 | See https://github.com/briansmith/ring. 2 | -------------------------------------------------------------------------------- /vendor/ring/include/GFp/.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-language=C 2 | -------------------------------------------------------------------------------- /vendor/ring/include/GFp/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/include/GFp/aes.h -------------------------------------------------------------------------------- /vendor/ring/include/GFp/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/include/GFp/base.h -------------------------------------------------------------------------------- /vendor/ring/include/GFp/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/include/GFp/cpu.h -------------------------------------------------------------------------------- /vendor/ring/include/GFp/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/include/GFp/mem.h -------------------------------------------------------------------------------- /vendor/ring/mk/appveyor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/mk/appveyor.bat -------------------------------------------------------------------------------- /vendor/ring/mk/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/mk/package.sh -------------------------------------------------------------------------------- /vendor/ring/mk/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/mk/travis.sh -------------------------------------------------------------------------------- /vendor/ring/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/rustfmt.toml -------------------------------------------------------------------------------- /vendor/ring/sgx/ring-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/ring/sgx/ring-sgx-test/enclave/src/tests: -------------------------------------------------------------------------------- 1 | ../../../../tests -------------------------------------------------------------------------------- /vendor/ring/sgx/ring-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/ring/src/aead.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/aead.rs -------------------------------------------------------------------------------- /vendor/ring/src/aead/aes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/aead/aes.rs -------------------------------------------------------------------------------- /vendor/ring/src/aead/aes_gcm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/aead/aes_gcm.rs -------------------------------------------------------------------------------- /vendor/ring/src/aead/block.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/aead/block.rs -------------------------------------------------------------------------------- /vendor/ring/src/aead/chacha.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/aead/chacha.rs -------------------------------------------------------------------------------- /vendor/ring/src/aead/gcm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/aead/gcm.rs -------------------------------------------------------------------------------- /vendor/ring/src/aead/nonce.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/aead/nonce.rs -------------------------------------------------------------------------------- /vendor/ring/src/aead/poly1305.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/aead/poly1305.rs -------------------------------------------------------------------------------- /vendor/ring/src/aead/quic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/aead/quic.rs -------------------------------------------------------------------------------- /vendor/ring/src/aead/shift.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/aead/shift.rs -------------------------------------------------------------------------------- /vendor/ring/src/agreement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/agreement.rs -------------------------------------------------------------------------------- /vendor/ring/src/arithmetic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/arithmetic.rs -------------------------------------------------------------------------------- /vendor/ring/src/bits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/bits.rs -------------------------------------------------------------------------------- /vendor/ring/src/bssl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/bssl.rs -------------------------------------------------------------------------------- /vendor/ring/src/c.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/c.rs -------------------------------------------------------------------------------- /vendor/ring/src/constant_time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/constant_time.rs -------------------------------------------------------------------------------- /vendor/ring/src/cpu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/cpu.rs -------------------------------------------------------------------------------- /vendor/ring/src/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/debug.rs -------------------------------------------------------------------------------- /vendor/ring/src/digest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/digest.rs -------------------------------------------------------------------------------- /vendor/ring/src/digest/sha1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/digest/sha1.rs -------------------------------------------------------------------------------- /vendor/ring/src/digest/sha2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/digest/sha2.rs -------------------------------------------------------------------------------- /vendor/ring/src/ec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/ec.rs -------------------------------------------------------------------------------- /vendor/ring/src/ec/curve25519.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/ec/curve25519.rs -------------------------------------------------------------------------------- /vendor/ring/src/ec/keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/ec/keys.rs -------------------------------------------------------------------------------- /vendor/ring/src/ec/suite_b.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/ec/suite_b.rs -------------------------------------------------------------------------------- /vendor/ring/src/endian.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/endian.rs -------------------------------------------------------------------------------- /vendor/ring/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/error.rs -------------------------------------------------------------------------------- /vendor/ring/src/hkdf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/hkdf.rs -------------------------------------------------------------------------------- /vendor/ring/src/hmac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/hmac.rs -------------------------------------------------------------------------------- /vendor/ring/src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/io.rs -------------------------------------------------------------------------------- /vendor/ring/src/io/der.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/io/der.rs -------------------------------------------------------------------------------- /vendor/ring/src/io/der_writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/io/der_writer.rs -------------------------------------------------------------------------------- /vendor/ring/src/io/positive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/io/positive.rs -------------------------------------------------------------------------------- /vendor/ring/src/io/writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/io/writer.rs -------------------------------------------------------------------------------- /vendor/ring/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/lib.rs -------------------------------------------------------------------------------- /vendor/ring/src/limb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/limb.rs -------------------------------------------------------------------------------- /vendor/ring/src/pbkdf2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/pbkdf2.rs -------------------------------------------------------------------------------- /vendor/ring/src/pkcs8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/pkcs8.rs -------------------------------------------------------------------------------- /vendor/ring/src/polyfill.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/polyfill.rs -------------------------------------------------------------------------------- /vendor/ring/src/rand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/rand.rs -------------------------------------------------------------------------------- /vendor/ring/src/rsa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/rsa.rs -------------------------------------------------------------------------------- /vendor/ring/src/rsa/padding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/rsa/padding.rs -------------------------------------------------------------------------------- /vendor/ring/src/rsa/signing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/rsa/signing.rs -------------------------------------------------------------------------------- /vendor/ring/src/signature.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/signature.rs -------------------------------------------------------------------------------- /vendor/ring/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/test.rs -------------------------------------------------------------------------------- /vendor/ring/src/test_1_syntax_error_tests.txt: -------------------------------------------------------------------------------- 1 | Key: 0 2 | -------------------------------------------------------------------------------- /vendor/ring/src/test_1_tests.txt: -------------------------------------------------------------------------------- 1 | Key = Value 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/ring/src/test_3_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/src/test_3_tests.txt -------------------------------------------------------------------------------- /vendor/ring/tests/aead_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/tests/aead_tests.rs -------------------------------------------------------------------------------- /vendor/ring/tests/ecdsa_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/tests/ecdsa_tests.rs -------------------------------------------------------------------------------- /vendor/ring/tests/error_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/tests/error_tests.rs -------------------------------------------------------------------------------- /vendor/ring/tests/hkdf_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/tests/hkdf_tests.rs -------------------------------------------------------------------------------- /vendor/ring/tests/hkdf_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/tests/hkdf_tests.txt -------------------------------------------------------------------------------- /vendor/ring/tests/hmac_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/tests/hmac_tests.rs -------------------------------------------------------------------------------- /vendor/ring/tests/hmac_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/tests/hmac_tests.txt -------------------------------------------------------------------------------- /vendor/ring/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/tests/mod.rs -------------------------------------------------------------------------------- /vendor/ring/tests/quic_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/tests/quic_tests.rs -------------------------------------------------------------------------------- /vendor/ring/tests/rand_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/tests/rand_tests.rs -------------------------------------------------------------------------------- /vendor/ring/tests/rsa_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/tests/rsa_tests.rs -------------------------------------------------------------------------------- /vendor/ring/util/ar/ar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/util/ar/ar.go -------------------------------------------------------------------------------- /vendor/ring/util/ar/ar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/util/ar/ar_test.go -------------------------------------------------------------------------------- /vendor/ring/util/diff_asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/util/diff_asm.go -------------------------------------------------------------------------------- /vendor/ring/util/read_symbols.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/ring/util/read_symbols.go -------------------------------------------------------------------------------- /vendor/rust-base64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-base64/.gitignore -------------------------------------------------------------------------------- /vendor/rust-base64/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-base64/.travis.yml -------------------------------------------------------------------------------- /vendor/rust-base64/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-base64/Cargo.toml -------------------------------------------------------------------------------- /vendor/rust-base64/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-base64/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/rust-base64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-base64/README.md -------------------------------------------------------------------------------- /vendor/rust-base64/fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target 3 | corpus 4 | artifacts 5 | -------------------------------------------------------------------------------- /vendor/rust-base64/src/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-base64/src/decode.rs -------------------------------------------------------------------------------- /vendor/rust-base64/src/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-base64/src/encode.rs -------------------------------------------------------------------------------- /vendor/rust-base64/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-base64/src/lib.rs -------------------------------------------------------------------------------- /vendor/rust-base64/src/tables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-base64/src/tables.rs -------------------------------------------------------------------------------- /vendor/rust-base64/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-base64/src/tests.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/rust-crypto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/Cargo.toml -------------------------------------------------------------------------------- /vendor/rust-crypto/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/rust-crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/README.md -------------------------------------------------------------------------------- /vendor/rust-crypto/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/Xargo.toml -------------------------------------------------------------------------------- /vendor/rust-crypto/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/appveyor.yml -------------------------------------------------------------------------------- /vendor/rust-crypto/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/build.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/aead.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/aead.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/aes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/aes.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/aesni.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/aesni.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/bcrypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/bcrypt.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/buffer.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/digest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/digest.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/ghash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/ghash.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/hc128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/hc128.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/hkdf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/hkdf.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/hmac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/hmac.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/lib.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/mac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/mac.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/md5.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/md5.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/pbkdf2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/pbkdf2.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/rc4.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/rc4.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/scrypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/scrypt.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/sha1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/sha1.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/sha2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/sha2.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/sha3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/sha3.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/simd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/simd.rs -------------------------------------------------------------------------------- /vendor/rust-crypto/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-crypto/src/util.rs -------------------------------------------------------------------------------- /vendor/rust-memchr/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/.drone.yml -------------------------------------------------------------------------------- /vendor/rust-memchr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/.gitignore -------------------------------------------------------------------------------- /vendor/rust-memchr/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/.travis.yml -------------------------------------------------------------------------------- /vendor/rust-memchr/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/COPYING -------------------------------------------------------------------------------- /vendor/rust-memchr/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/Cargo.toml -------------------------------------------------------------------------------- /vendor/rust-memchr/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/rust-memchr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/README.md -------------------------------------------------------------------------------- /vendor/rust-memchr/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/UNLICENSE -------------------------------------------------------------------------------- /vendor/rust-memchr/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/appveyor.yml -------------------------------------------------------------------------------- /vendor/rust-memchr/bench/data/sherlock-holmes-tiny.txt: -------------------------------------------------------------------------------- 1 | Mr. Sherlock Holmes, who was usually very late in the mornings, save 2 | -------------------------------------------------------------------------------- /vendor/rust-memchr/ci/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/ci/script.sh -------------------------------------------------------------------------------- /vendor/rust-memchr/sgx/memchr-sgx-test/bin/.gdb_history: -------------------------------------------------------------------------------- 1 | r 2 | bt 3 | -------------------------------------------------------------------------------- /vendor/rust-memchr/sgx/memchr-sgx-test/bin/peda-session-app.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/rust-memchr/sgx/memchr-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/rust-memchr/sgx/memchr-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/rust-memchr/src/c.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/src/c.rs -------------------------------------------------------------------------------- /vendor/rust-memchr/src/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/src/iter.rs -------------------------------------------------------------------------------- /vendor/rust-memchr/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/src/lib.rs -------------------------------------------------------------------------------- /vendor/rust-memchr/src/naive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rust-memchr/src/naive.rs -------------------------------------------------------------------------------- /vendor/rustc-serialize/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /vendor/rustc-serialize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustc-serialize/README.md -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustcrypto-MACs/README.md -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/enclave/src/data/aes128.blb: -------------------------------------------------------------------------------- 1 | ../../../../../cmac/tests/data/aes128.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/enclave/src/data/aes192.blb: -------------------------------------------------------------------------------- 1 | ../../../../../cmac/tests/data/aes192.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/enclave/src/data/aes256.blb: -------------------------------------------------------------------------------- 1 | ../../../../../cmac/tests/data/aes256.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/enclave/src/data/md5.blb: -------------------------------------------------------------------------------- 1 | ../../../../../hmac/tests/data/md5.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/enclave/src/data/pmac_aes128.blb: -------------------------------------------------------------------------------- 1 | ../../../../../pmac/tests/data/aes128.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/enclave/src/data/pmac_aes192.blb: -------------------------------------------------------------------------------- 1 | ../../../../../pmac/tests/data/aes192.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/enclave/src/data/pmac_aes256.blb: -------------------------------------------------------------------------------- 1 | ../../../../../pmac/tests/data/aes256.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/enclave/src/data/sha224.blb: -------------------------------------------------------------------------------- 1 | ../../../../../hmac/tests/data/sha224.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/enclave/src/data/sha256.blb: -------------------------------------------------------------------------------- 1 | ../../../../../hmac/tests/data/sha256.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/enclave/src/data/sha384.blb: -------------------------------------------------------------------------------- 1 | ../../../../../hmac/tests/data/sha384.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/enclave/src/data/sha512.blb: -------------------------------------------------------------------------------- 1 | ../../../../../hmac/tests/data/sha512.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-MACs/sgx/MACs-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/cast5/.gitignore: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/rc2/tests/data/3.input.bin: -------------------------------------------------------------------------------- 1 | `F -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/1.input.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/1.input.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/1.key.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/1.key.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/2.input.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/2.input.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/2.key.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/2.key.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/3.input.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/3.input.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/3.key.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/3.key.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/4.input.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/4.input.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/4.key.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/4.key.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/5.input.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/5.input.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/5.key.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/5.key.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/6.input.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/6.input.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/6.key.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/6.key.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/7.input.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/7.input.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/7.key.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/7.key.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/8.input.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/8.input.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/8.key.bin: -------------------------------------------------------------------------------- 1 | ../../../../../rc2/tests/data/8.key.bin -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/des.blb: -------------------------------------------------------------------------------- 1 | ../../../../../des/tests/data/des.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/set1.blb: -------------------------------------------------------------------------------- 1 | ../../../../../cast5/tests/data/set1.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/set2.blb: -------------------------------------------------------------------------------- 1 | ../../../../../cast5/tests/data/set2.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/set3.blb: -------------------------------------------------------------------------------- 1 | ../../../../../cast5/tests/data/set3.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/set4.blb: -------------------------------------------------------------------------------- 1 | ../../../../../cast5/tests/data/set4.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/set5.blb: -------------------------------------------------------------------------------- 1 | ../../../../../cast5/tests/data/set5.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/set6.blb: -------------------------------------------------------------------------------- 1 | ../../../../../cast5/tests/data/set6.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/set7.blb: -------------------------------------------------------------------------------- 1 | ../../../../../cast5/tests/data/set7.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/set8.blb: -------------------------------------------------------------------------------- 1 | ../../../../../cast5/tests/data/set8.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/tdes.blb: -------------------------------------------------------------------------------- 1 | ../../../../../des/tests/data/tdes.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/enclave/src/data/tdes2.blb: -------------------------------------------------------------------------------- 1 | ../../../../../des/tests/data/tdes2.blb -------------------------------------------------------------------------------- /vendor/rustcrypto-block-ciphers/sgx/block-ciphers-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/rustcrypto-hashes/.gitattributes: -------------------------------------------------------------------------------- 1 | *.rs linguist-language=Rust 2 | -------------------------------------------------------------------------------- /vendor/rustcrypto-utils/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /vendor/rustcrypto-utils/.workspace.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/rustcrypto-utils/hex-literal/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /target/ 3 | **/*.rs.bk 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /vendor/rustls/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/.github/pull.yml -------------------------------------------------------------------------------- /vendor/rustls/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/.gitignore -------------------------------------------------------------------------------- /vendor/rustls/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/.travis.yml -------------------------------------------------------------------------------- /vendor/rustls/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/rustls/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/Cargo.toml -------------------------------------------------------------------------------- /vendor/rustls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/LICENSE -------------------------------------------------------------------------------- /vendor/rustls/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/rustls/LICENSE-ISC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/LICENSE-ISC -------------------------------------------------------------------------------- /vendor/rustls/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/rustls/OLDCHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/OLDCHANGES.md -------------------------------------------------------------------------------- /vendor/rustls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/README.md -------------------------------------------------------------------------------- /vendor/rustls/admin/bench-range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/admin/bench-range -------------------------------------------------------------------------------- /vendor/rustls/admin/build-lcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/admin/build-lcov -------------------------------------------------------------------------------- /vendor/rustls/admin/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/admin/coverage -------------------------------------------------------------------------------- /vendor/rustls/admin/format-bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/admin/format-bench -------------------------------------------------------------------------------- /vendor/rustls/admin/llvm-gcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/admin/llvm-gcov -------------------------------------------------------------------------------- /vendor/rustls/admin/pull-readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/admin/pull-readme -------------------------------------------------------------------------------- /vendor/rustls/admin/pull-usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/admin/pull-usage -------------------------------------------------------------------------------- /vendor/rustls/bogo/.gitignore: -------------------------------------------------------------------------------- 1 | runner.tar.gz 2 | bogo/ 3 | -------------------------------------------------------------------------------- /vendor/rustls/bogo/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/bogo/check.py -------------------------------------------------------------------------------- /vendor/rustls/bogo/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/bogo/config.json -------------------------------------------------------------------------------- /vendor/rustls/bogo/keys/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/bogo/keys/cert.pem -------------------------------------------------------------------------------- /vendor/rustls/bogo/keys/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/bogo/keys/key.pem -------------------------------------------------------------------------------- /vendor/rustls/bogo/regen-certs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/bogo/regen-certs -------------------------------------------------------------------------------- /vendor/rustls/bogo/runme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/bogo/runme -------------------------------------------------------------------------------- /vendor/rustls/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/examples/README.md -------------------------------------------------------------------------------- /vendor/rustls/fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target 3 | artifacts 4 | -------------------------------------------------------------------------------- /vendor/rustls/fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/fuzz/Cargo.toml -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Alert.11453208220996012273.bin: -------------------------------------------------------------------------------- 1 | ponytown -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Alert.13361831451407093096.bin: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Alert.13518407338280213965.bin: -------------------------------------------------------------------------------- 1 | n -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Alert.13944372952187732560.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Alert.3846875027962666933.bin: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Alert.4742310320599043602.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/ChangeCipherSpec.5130871619167228381.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.10874002327852371828.bin: -------------------------------------------------------------------------------- 1 |  hello world -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.11133859442970323138.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.1365796585825694264.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.1688845106119492085.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.18266666495466432220.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.18755738257883875.bin: -------------------------------------------------------------------------------- 1 | junk -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.2394528942117922419.bin: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.2979609226092629843.bin: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.5837042724063548647.bin: -------------------------------------------------------------------------------- 1 |  2 |  3 |  -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.7885327095706217153.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.8248374086501392768.bin: -------------------------------------------------------------------------------- 1 |  server-proto -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.8406587813025302152.bin: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.9243195678680727758.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /vendor/rustls/fuzz/corpus/message/Handshake.9996393024757669485.bin: -------------------------------------------------------------------------------- 1 |  2 |  -------------------------------------------------------------------------------- /vendor/rustls/src/anchors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/anchors.rs -------------------------------------------------------------------------------- /vendor/rustls/src/bs_debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/bs_debug.rs -------------------------------------------------------------------------------- /vendor/rustls/src/cipher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/cipher.rs -------------------------------------------------------------------------------- /vendor/rustls/src/client/hs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/client/hs.rs -------------------------------------------------------------------------------- /vendor/rustls/src/client/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/client/mod.rs -------------------------------------------------------------------------------- /vendor/rustls/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/error.rs -------------------------------------------------------------------------------- /vendor/rustls/src/handshake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/handshake.rs -------------------------------------------------------------------------------- /vendor/rustls/src/hash_hs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/hash_hs.rs -------------------------------------------------------------------------------- /vendor/rustls/src/key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/key.rs -------------------------------------------------------------------------------- /vendor/rustls/src/keylog.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/keylog.rs -------------------------------------------------------------------------------- /vendor/rustls/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/lib.rs -------------------------------------------------------------------------------- /vendor/rustls/src/msgs/alert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/msgs/alert.rs -------------------------------------------------------------------------------- /vendor/rustls/src/msgs/base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/msgs/base.rs -------------------------------------------------------------------------------- /vendor/rustls/src/msgs/ccs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/msgs/ccs.rs -------------------------------------------------------------------------------- /vendor/rustls/src/msgs/codec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/msgs/codec.rs -------------------------------------------------------------------------------- /vendor/rustls/src/msgs/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/msgs/enums.rs -------------------------------------------------------------------------------- /vendor/rustls/src/msgs/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/msgs/macros.rs -------------------------------------------------------------------------------- /vendor/rustls/src/msgs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/msgs/mod.rs -------------------------------------------------------------------------------- /vendor/rustls/src/pemfile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/pemfile.rs -------------------------------------------------------------------------------- /vendor/rustls/src/prf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/prf.rs -------------------------------------------------------------------------------- /vendor/rustls/src/quic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/quic.rs -------------------------------------------------------------------------------- /vendor/rustls/src/rand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/rand.rs -------------------------------------------------------------------------------- /vendor/rustls/src/server/hs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/server/hs.rs -------------------------------------------------------------------------------- /vendor/rustls/src/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/server/mod.rs -------------------------------------------------------------------------------- /vendor/rustls/src/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/session.rs -------------------------------------------------------------------------------- /vendor/rustls/src/sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/sign.rs -------------------------------------------------------------------------------- /vendor/rustls/src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/stream.rs -------------------------------------------------------------------------------- /vendor/rustls/src/suites.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/suites.rs -------------------------------------------------------------------------------- /vendor/rustls/src/testdata/deframer-test.2.bin: -------------------------------------------------------------------------------- 1 | n -------------------------------------------------------------------------------- /vendor/rustls/src/ticketer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/ticketer.rs -------------------------------------------------------------------------------- /vendor/rustls/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/util.rs -------------------------------------------------------------------------------- /vendor/rustls/src/vecbuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/vecbuf.rs -------------------------------------------------------------------------------- /vendor/rustls/src/verify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/verify.rs -------------------------------------------------------------------------------- /vendor/rustls/src/verifybench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/verifybench.rs -------------------------------------------------------------------------------- /vendor/rustls/src/x509.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/src/x509.rs -------------------------------------------------------------------------------- /vendor/rustls/test-ca/rsa/ca.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/test-ca/rsa/ca.der -------------------------------------------------------------------------------- /vendor/rustls/test-ca/rsa/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/test-ca/rsa/ca.key -------------------------------------------------------------------------------- /vendor/rustls/tests/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/tests/api.rs -------------------------------------------------------------------------------- /vendor/rustls/trytls/.gitignore: -------------------------------------------------------------------------------- 1 | trytls/ 2 | -------------------------------------------------------------------------------- /vendor/rustls/trytls/runme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/rustls/trytls/runme -------------------------------------------------------------------------------- /vendor/sct/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/.drone.yml -------------------------------------------------------------------------------- /vendor/sct/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/.github/pull.yml -------------------------------------------------------------------------------- /vendor/sct/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/.gitignore -------------------------------------------------------------------------------- /vendor/sct/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/.travis.yml -------------------------------------------------------------------------------- /vendor/sct/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/Cargo.toml -------------------------------------------------------------------------------- /vendor/sct/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/LICENSE -------------------------------------------------------------------------------- /vendor/sct/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/sct/LICENSE-ISC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/LICENSE-ISC -------------------------------------------------------------------------------- /vendor/sct/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/sct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/README.md -------------------------------------------------------------------------------- /vendor/sct/admin/build-lcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/admin/build-lcov -------------------------------------------------------------------------------- /vendor/sct/admin/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/admin/coverage -------------------------------------------------------------------------------- /vendor/sct/admin/coverage-rustc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/admin/coverage-rustc -------------------------------------------------------------------------------- /vendor/sct/admin/llvm-gcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/admin/llvm-gcov -------------------------------------------------------------------------------- /vendor/sct/sgx/sct-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/sct/sgx/sct-sgx-test/enclave/src/testdata: -------------------------------------------------------------------------------- 1 | ../../../../src/testdata -------------------------------------------------------------------------------- /vendor/sct/sgx/sct-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/sct/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/src/lib.rs -------------------------------------------------------------------------------- /vendor/sct/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/src/tests.rs -------------------------------------------------------------------------------- /vendor/sct/src/tests_google.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/src/tests_google.rs -------------------------------------------------------------------------------- /vendor/sct/test/mktest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/test/mktest.py -------------------------------------------------------------------------------- /vendor/sct/test/rsa-2048-pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/test/rsa-2048-pub.pem -------------------------------------------------------------------------------- /vendor/sct/test/rsa-3072-pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/test/rsa-3072-pub.pem -------------------------------------------------------------------------------- /vendor/sct/test/rsa-4096-pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/sct/test/rsa-4096-pub.pem -------------------------------------------------------------------------------- /vendor/serde-json/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/.drone.yml -------------------------------------------------------------------------------- /vendor/serde-json/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | **/*.rs.bk 3 | *.sw[po] 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /vendor/serde-json/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/.travis.yml -------------------------------------------------------------------------------- /vendor/serde-json/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/Cargo.toml -------------------------------------------------------------------------------- /vendor/serde-json/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/serde-json/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/serde-json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/README.md -------------------------------------------------------------------------------- /vendor/serde-json/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/appveyor.yml -------------------------------------------------------------------------------- /vendor/serde-json/sgx/json-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/serde-json/sgx/json-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/serde-json/src/de.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/src/de.rs -------------------------------------------------------------------------------- /vendor/serde-json/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/src/error.rs -------------------------------------------------------------------------------- /vendor/serde-json/src/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/src/iter.rs -------------------------------------------------------------------------------- /vendor/serde-json/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/src/lib.rs -------------------------------------------------------------------------------- /vendor/serde-json/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/src/macros.rs -------------------------------------------------------------------------------- /vendor/serde-json/src/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/src/map.rs -------------------------------------------------------------------------------- /vendor/serde-json/src/number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/src/number.rs -------------------------------------------------------------------------------- /vendor/serde-json/src/raw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/src/raw.rs -------------------------------------------------------------------------------- /vendor/serde-json/src/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/src/read.rs -------------------------------------------------------------------------------- /vendor/serde-json/src/ser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/src/ser.rs -------------------------------------------------------------------------------- /vendor/serde-json/tests/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/tests/debug.rs -------------------------------------------------------------------------------- /vendor/serde-json/tests/regression/mod.rs: -------------------------------------------------------------------------------- 1 | automod::dir!("tests/regression"); 2 | -------------------------------------------------------------------------------- /vendor/serde-json/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde-json/tests/test.rs -------------------------------------------------------------------------------- /vendor/serde/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/.drone.yml -------------------------------------------------------------------------------- /vendor/serde/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/.github/pull.yml -------------------------------------------------------------------------------- /vendor/serde/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | **/*.rs.bk 3 | *.sw[po] 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /vendor/serde/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/.travis.yml -------------------------------------------------------------------------------- /vendor/serde/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/serde/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/Cargo.toml -------------------------------------------------------------------------------- /vendor/serde/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/serde/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/serde/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/README.md -------------------------------------------------------------------------------- /vendor/serde/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/appveyor.yml -------------------------------------------------------------------------------- /vendor/serde/crates-io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/crates-io.md -------------------------------------------------------------------------------- /vendor/serde/rustfmt.toml: -------------------------------------------------------------------------------- 1 | error_on_line_overflow = false 2 | -------------------------------------------------------------------------------- /vendor/serde/serde/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/serde/Cargo.toml -------------------------------------------------------------------------------- /vendor/serde/serde/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/serde/serde/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /vendor/serde/serde/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /vendor/serde/serde/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/serde/build.rs -------------------------------------------------------------------------------- /vendor/serde/serde/crates-io.md: -------------------------------------------------------------------------------- 1 | ../crates-io.md -------------------------------------------------------------------------------- /vendor/serde/serde/src/de/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/serde/src/de/mod.rs -------------------------------------------------------------------------------- /vendor/serde/serde/src/export.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/serde/src/export.rs -------------------------------------------------------------------------------- /vendor/serde/serde/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/serde/src/lib.rs -------------------------------------------------------------------------------- /vendor/serde/serde/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/serde/src/macros.rs -------------------------------------------------------------------------------- /vendor/serde/serde_derive/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/serde/serde_derive/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /vendor/serde/serde_derive/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /vendor/serde/serde_derive/crates-io.md: -------------------------------------------------------------------------------- 1 | ../crates-io.md -------------------------------------------------------------------------------- /vendor/serde/serde_derive_internals/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/serde/serde_derive_internals/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /vendor/serde/serde_derive_internals/src: -------------------------------------------------------------------------------- 1 | ../serde_derive/src/internals/ -------------------------------------------------------------------------------- /vendor/serde/serde_test/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/serde/serde_test/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /vendor/serde/serde_test/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /vendor/serde/serde_test/crates-io.md: -------------------------------------------------------------------------------- 1 | ../crates-io.md -------------------------------------------------------------------------------- /vendor/serde/sgx/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/sgx/Cargo.toml -------------------------------------------------------------------------------- /vendor/serde/sgx/serde-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | bin -------------------------------------------------------------------------------- /vendor/serde/sgx/serde-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/serde/test_suite/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/serde/test_suite/build.rs -------------------------------------------------------------------------------- /vendor/subtle/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/.drone.yml -------------------------------------------------------------------------------- /vendor/subtle/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/.github/pull.yml -------------------------------------------------------------------------------- /vendor/subtle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/.gitignore -------------------------------------------------------------------------------- /vendor/subtle/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/.travis.yml -------------------------------------------------------------------------------- /vendor/subtle/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/subtle/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/subtle/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/Cargo.toml -------------------------------------------------------------------------------- /vendor/subtle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/LICENSE -------------------------------------------------------------------------------- /vendor/subtle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/README.md -------------------------------------------------------------------------------- /vendor/subtle/fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target 3 | corpus 4 | artifacts 5 | -------------------------------------------------------------------------------- /vendor/subtle/fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/fuzz/Cargo.toml -------------------------------------------------------------------------------- /vendor/subtle/sgx/subtle-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/subtle/sgx/subtle-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/subtle/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/src/lib.rs -------------------------------------------------------------------------------- /vendor/subtle/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/subtle/tests/mod.rs -------------------------------------------------------------------------------- /vendor/webpki-roots/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki-roots/.drone.yml -------------------------------------------------------------------------------- /vendor/webpki-roots/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki-roots/.gitignore -------------------------------------------------------------------------------- /vendor/webpki-roots/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki-roots/.travis.yml -------------------------------------------------------------------------------- /vendor/webpki-roots/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki-roots/Cargo.toml -------------------------------------------------------------------------------- /vendor/webpki-roots/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki-roots/LICENSE -------------------------------------------------------------------------------- /vendor/webpki-roots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki-roots/README.md -------------------------------------------------------------------------------- /vendor/webpki-roots/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki-roots/Xargo.toml -------------------------------------------------------------------------------- /vendor/webpki-roots/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki-roots/build.py -------------------------------------------------------------------------------- /vendor/webpki-roots/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki-roots/src/lib.rs -------------------------------------------------------------------------------- /vendor/webpki/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/.drone.yml -------------------------------------------------------------------------------- /vendor/webpki/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/.gitattributes -------------------------------------------------------------------------------- /vendor/webpki/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/.github/pull.yml -------------------------------------------------------------------------------- /vendor/webpki/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/.gitignore -------------------------------------------------------------------------------- /vendor/webpki/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/.travis.yml -------------------------------------------------------------------------------- /vendor/webpki/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/Cargo.toml -------------------------------------------------------------------------------- /vendor/webpki/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/LICENSE -------------------------------------------------------------------------------- /vendor/webpki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/README.md -------------------------------------------------------------------------------- /vendor/webpki/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/appveyor.yml -------------------------------------------------------------------------------- /vendor/webpki/mk/appveyor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/mk/appveyor.bat -------------------------------------------------------------------------------- /vendor/webpki/mk/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/mk/travis.sh -------------------------------------------------------------------------------- /vendor/webpki/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/rustfmt.toml -------------------------------------------------------------------------------- /vendor/webpki/sgx/webpki-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/webpki/sgx/webpki-sgx-test/bin/third-party: -------------------------------------------------------------------------------- 1 | ../../../third-party -------------------------------------------------------------------------------- /vendor/webpki/sgx/webpki-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/webpki/src/calendar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/src/calendar.rs -------------------------------------------------------------------------------- /vendor/webpki/src/cert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/src/cert.rs -------------------------------------------------------------------------------- /vendor/webpki/src/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/src/data/README.md -------------------------------------------------------------------------------- /vendor/webpki/src/data/alg-ed25519.der: -------------------------------------------------------------------------------- 1 | +ep -------------------------------------------------------------------------------- /vendor/webpki/src/der.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/src/der.rs -------------------------------------------------------------------------------- /vendor/webpki/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/src/error.rs -------------------------------------------------------------------------------- /vendor/webpki/src/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/src/name.rs -------------------------------------------------------------------------------- /vendor/webpki/src/signed_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/src/signed_data.rs -------------------------------------------------------------------------------- /vendor/webpki/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/src/time.rs -------------------------------------------------------------------------------- /vendor/webpki/src/verify_cert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/src/verify_cert.rs -------------------------------------------------------------------------------- /vendor/webpki/src/webpki.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/webpki/src/webpki.rs -------------------------------------------------------------------------------- /vendor/yasna/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/.drone.yml -------------------------------------------------------------------------------- /vendor/yasna/.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/.github/pull.yml -------------------------------------------------------------------------------- /vendor/yasna/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /vendor/yasna/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/.travis.yml -------------------------------------------------------------------------------- /vendor/yasna/.travis/.gitignore: -------------------------------------------------------------------------------- 1 | /deploy_key 2 | -------------------------------------------------------------------------------- /vendor/yasna/.travis/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/.travis/deploy.sh -------------------------------------------------------------------------------- /vendor/yasna/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/yasna/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/Cargo.toml -------------------------------------------------------------------------------- /vendor/yasna/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/LICENSE-APACHE -------------------------------------------------------------------------------- /vendor/yasna/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/LICENSE-MIT -------------------------------------------------------------------------------- /vendor/yasna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/README.md -------------------------------------------------------------------------------- /vendor/yasna/doc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/doc/favicon.ico -------------------------------------------------------------------------------- /vendor/yasna/doc/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/yasna/sgx/yasna-sgx-test/bin/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/yasna/sgx/yasna-sgx-test/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /vendor/yasna/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/src/lib.rs -------------------------------------------------------------------------------- /vendor/yasna/src/models/der.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/src/models/der.rs -------------------------------------------------------------------------------- /vendor/yasna/src/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/src/models/mod.rs -------------------------------------------------------------------------------- /vendor/yasna/src/models/oid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/src/models/oid.rs -------------------------------------------------------------------------------- /vendor/yasna/src/models/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/src/models/time.rs -------------------------------------------------------------------------------- /vendor/yasna/src/reader/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/src/reader/error.rs -------------------------------------------------------------------------------- /vendor/yasna/src/reader/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/src/reader/mod.rs -------------------------------------------------------------------------------- /vendor/yasna/src/reader/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/src/reader/tests.rs -------------------------------------------------------------------------------- /vendor/yasna/src/tags/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/src/tags/mod.rs -------------------------------------------------------------------------------- /vendor/yasna/src/writer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/src/writer/mod.rs -------------------------------------------------------------------------------- /vendor/yasna/src/writer/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phala-Network/phala-pruntime/HEAD/vendor/yasna/src/writer/tests.rs --------------------------------------------------------------------------------