Skip to content
Open

Hej #302

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .codesight/default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"id":{"name":"default","location":"/workspaces/PAKEs/.codesight/default.json"},"buildToolConfig":{"java":{}},"bridgeConfig":{"source":{"type":7,"location":"/workspaces/PAKEs/.codesight/default.json"},"scanTypes":[0,1]},"buildConfig":{},"gitConfig":{"diffScanReferenceBranch":{"value":"master","source":{"type":7,"location":"/workspaces/PAKEs/.codesight/default.json"},"expandedValue":"master"},"pathToGitRepository":{"value":"/workspaces/PAKEs","source":{"type":7,"location":"/workspaces/PAKEs/.codesight/default.json"}}}}
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install system packages
run: |
sudo apt-get update
sudo apt-get install -y bubblewrap socat pkg-config libssl-dev build-essential

- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Build workspace
run: cargo build --workspace --verbose

- name: Run tests
run: cargo test --workspace --verbose

- name: Run example (toy_pake)
run: cargo run -p toy_pake || true
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
/target/
**/*.rs.bk
.idea/
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"aucpace",
"spake2",
"srp",
"toy_pake",
]

[profile.dev]
Expand Down
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.PHONY: setup-debian setup-alpine build test run all

setup-debian:
sudo bash scripts/setup-debian.sh

setup-alpine:
sudo sh scripts/setup-alpine.sh

build:
cargo build --workspace

test:
cargo test --workspace

run:
cargo run -p toy_pake

all: build test run
27 changes: 27 additions & 0 deletions docs/SETUP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Setup and run

Run the appropriate setup script for your OS, then build and run the workspace.

Debian/Ubuntu:

```bash
sudo bash scripts/setup-debian.sh
make build
make test
make run
```

Alpine:

```sh
sudo sh scripts/setup-alpine.sh
make build
make test
make run
```

If you prefer a single script:

```bash
bash scripts/build_and_run.sh
```
11 changes: 11 additions & 0 deletions scripts/build_and_run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -euo pipefail

echo "Building workspace..."
cargo build --workspace

echo "Running tests..."
cargo test --workspace

echo "Running example 'toy_pake'..."
cargo run -p toy_pake
11 changes: 11 additions & 0 deletions scripts/setup-alpine.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env sh
set -e

if [ "$(id -u)" -ne 0 ]; then
echo "This script requires root. Re-run as: sudo $0"
exit 1
fi

apk update
apk add --no-cache build-base pkgconfig openssl-dev bubblewrap socat
echo "Alpine prerequisites installed."
11 changes: 11 additions & 0 deletions scripts/setup-debian.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -euo pipefail

if [ "$EUID" -ne 0 ]; then
echo "This script requires sudo. Re-run as: sudo $0"
exit 1
fi

apt-get update
apt-get install -y build-essential pkg-config libssl-dev bubblewrap socat
echo "Debian/Ubuntu prerequisites installed."
1 change: 1 addition & 0 deletions target/.rustc_info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc_fingerprint":9122237771788085221,"outputs":{"7479951702868848133":{"success":true,"status":"","code":0,"stdout":"rustc 1.96.1 (31fca3adb 2026-06-26)\nbinary: rustc\ncommit-hash: 31fca3adb283cc9dfd56b49cdee9a96eb9c96ffd\ncommit-date: 2026-06-26\nhost: x86_64-unknown-linux-gnu\nrelease: 1.96.1\nLLVM version: 22.1.2\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/codespace/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"11857020428658561806":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/codespace/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}}
3 changes: 3 additions & 0 deletions target/CACHEDIR.TAG
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Signature: 8a477f597d28d172789f06886806bc55
# This file is a cache directory tag created by cargo.
# For information about cache directory tags see https://bford.info/cachedir/
Empty file.
Empty file added target/debug/.cargo-build-lock
Empty file.
Empty file added target/debug/.cargo-lock
Empty file.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
55436f2e90a0c320
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[\"default\", \"getrandom\", \"scrypt\", \"sha2\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"partial_augmentation\", \"scrypt\", \"serde\", \"serde-byte-array\", \"sha2\", \"strong_aucpace\", \"zeroize\"]","target":7699157598837827137,"profile":16756386250200585696,"path":1120381427704192271,"deps":[[102550615455432237,"password_hash",false,5139210538431373603],[4091053499939819895,"sha2",false,16718535865485934193],[4567565257399991530,"curve25519_dalek",false,12411029955069559096],[6509165896255665847,"getrandom",false,4546743525437578857],[7080624251263872209,"scrypt",false,5669742351700026009],[15239504618383797584,"postcard",false,7187506333988374335],[17003143334332120809,"subtle",false,15312671015664851084],[18359178603293420568,"rand_core",false,8463519674862892538]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aucpace-4cc50600756d6aa2/dep-test-lib-aucpace","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
aad29b957b16abb2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[\"default\", \"getrandom\", \"scrypt\", \"sha2\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"partial_augmentation\", \"scrypt\", \"serde\", \"serde-byte-array\", \"sha2\", \"strong_aucpace\", \"zeroize\"]","target":10940230280175248361,"profile":16756386250200585696,"path":3034895503659418598,"deps":[[102550615455432237,"password_hash",false,5139210538431373603],[4091053499939819895,"sha2",false,16718535865485934193],[4567565257399991530,"curve25519_dalek",false,12411029955069559096],[6509165896255665847,"getrandom",false,4546743525437578857],[7080624251263872209,"scrypt",false,5669742351700026009],[15239504618383797584,"postcard",false,7187506333988374335],[15428098937584168776,"aucpace",false,7195363449147926943],[17003143334332120809,"subtle",false,15312671015664851084],[18359178603293420568,"rand_core",false,8463519674862892538]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aucpace-52e488ba82908cc4/dep-test-integration-test-test_key_agreement_strong_partial_aug","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cfaa65c255908cc8
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[\"default\", \"getrandom\", \"scrypt\", \"sha2\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"partial_augmentation\", \"scrypt\", \"serde\", \"serde-byte-array\", \"sha2\", \"strong_aucpace\", \"zeroize\"]","target":12031004847954533399,"profile":16756386250200585696,"path":6425105466759247626,"deps":[[102550615455432237,"password_hash",false,5139210538431373603],[4091053499939819895,"sha2",false,16718535865485934193],[4567565257399991530,"curve25519_dalek",false,12411029955069559096],[6509165896255665847,"getrandom",false,4546743525437578857],[7080624251263872209,"scrypt",false,5669742351700026009],[15239504618383797584,"postcard",false,7187506333988374335],[15428098937584168776,"aucpace",false,7195363449147926943],[17003143334332120809,"subtle",false,15312671015664851084],[18359178603293420568,"rand_core",false,8463519674862892538]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aucpace-53d8c686113b5ba2/dep-test-integration-test-test_key_agreement_strong","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9fa94a30ef10db63
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[\"default\", \"getrandom\", \"scrypt\", \"sha2\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"partial_augmentation\", \"scrypt\", \"serde\", \"serde-byte-array\", \"sha2\", \"strong_aucpace\", \"zeroize\"]","target":7699157598837827137,"profile":13136499164997004105,"path":1120381427704192271,"deps":[[102550615455432237,"password_hash",false,5139210538431373603],[4091053499939819895,"sha2",false,16718535865485934193],[4567565257399991530,"curve25519_dalek",false,12411029955069559096],[6509165896255665847,"getrandom",false,4546743525437578857],[7080624251263872209,"scrypt",false,5669742351700026009],[17003143334332120809,"subtle",false,15312671015664851084],[18359178603293420568,"rand_core",false,8463519674862892538]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aucpace-74c1a6afc7c28536/dep-lib-aucpace","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
c1adcdf728f944e8
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[\"default\", \"getrandom\", \"scrypt\", \"sha2\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"partial_augmentation\", \"scrypt\", \"serde\", \"serde-byte-array\", \"sha2\", \"strong_aucpace\", \"zeroize\"]","target":7885641273729264155,"profile":16756386250200585696,"path":13492808151951720606,"deps":[[102550615455432237,"password_hash",false,5139210538431373603],[4091053499939819895,"sha2",false,16718535865485934193],[4567565257399991530,"curve25519_dalek",false,12411029955069559096],[6509165896255665847,"getrandom",false,4546743525437578857],[7080624251263872209,"scrypt",false,5669742351700026009],[15239504618383797584,"postcard",false,7187506333988374335],[15428098937584168776,"aucpace",false,7195363449147926943],[17003143334332120809,"subtle",false,15312671015664851084],[18359178603293420568,"rand_core",false,8463519674862892538]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aucpace-b8faf69dbe32e6ae/dep-test-integration-test-test_key_agreement_partial_aug","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
61bd5cbac0a81830
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[\"default\", \"getrandom\", \"scrypt\", \"sha2\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"partial_augmentation\", \"scrypt\", \"serde\", \"serde-byte-array\", \"sha2\", \"strong_aucpace\", \"zeroize\"]","target":11158296386655717298,"profile":16756386250200585696,"path":12178703428823494502,"deps":[[102550615455432237,"password_hash",false,5139210538431373603],[4091053499939819895,"sha2",false,16718535865485934193],[4567565257399991530,"curve25519_dalek",false,12411029955069559096],[6509165896255665847,"getrandom",false,4546743525437578857],[7080624251263872209,"scrypt",false,5669742351700026009],[15239504618383797584,"postcard",false,7187506333988374335],[15428098937584168776,"aucpace",false,7195363449147926943],[17003143334332120809,"subtle",false,15312671015664851084],[18359178603293420568,"rand_core",false,8463519674862892538]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aucpace-fc63d9eb101e2e61/dep-test-integration-test-test_key_agreement","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f64c0a558704a37a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[]","declared_features":"[]","target":6962977057026645649,"profile":2225463790103693989,"path":1721145137516487798,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-975cc240c685b2e4/dep-lib-autocfg","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
937e103c6b35a52b
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[]","declared_features":"[\"alloc\", \"std\"]","target":15548948006327107948,"profile":4596809407697463924,"path":8184343456138716671,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/base64ct-c44db39a37a7c6a5/dep-lib-base64ct","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6785083ce974b400
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[]","declared_features":"[]","target":8963059280010558945,"profile":4596809407697463924,"path":11448093156995723625,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bencher-7387d5ef72f97192/dep-lib-bencher","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
c34152858c6f0cc3
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"std\"]","target":1565461888733056401,"profile":4596809407697463924,"path":16189592699591277281,"deps":[[5692597712387868707,"bit_vec",false,8798762749504972150]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bit-set-4c888c9703c28498/dep-lib-bit_set","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
76e52e531a7c1b7a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[\"default\", \"std\"]","declared_features":"[\"borsh\", \"borsh_std\", \"default\", \"miniserde\", \"nanoserde\", \"serde\", \"serde_no_std\", \"serde_std\", \"std\"]","target":1886748672988989682,"profile":4596809407697463924,"path":2783884017637051388,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bit-vec-e5f37fbb96e31f25/dep-lib-bit_vec","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4b8c0e1b1c274d97
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[\"std\"]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":4596809407697463924,"path":347034554054126765,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-c54e76758026df54/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20e182c832e8f390
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[]","declared_features":"[\"zeroize\"]","target":6057344034650883969,"profile":4994364589152142672,"path":16047825801146402762,"deps":[[2370789100264716663,"hybrid_array",false,10022754448948233584]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/block-buffer-983b4a1617ea8abc/dep-lib-block_buffer","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2c98ee374b2cb57e
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":4596809407697463924,"path":16183178319637774967,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-3343a16c7a2877a8/dep-lib-byteorder","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
d3a73105d2dc7cb7
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":4596809407697463924,"path":7611728086082710389,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-c42881da97b8ce8f/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
65885c723d9fc7ad
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[\"block-buffer\", \"stream-wrapper\"]","declared_features":"[\"alloc\", \"blobby\", \"block-buffer\", \"block-padding\", \"dev\", \"getrandom\", \"rand_core\", \"stream-wrapper\", \"zeroize\"]","target":14656997131391551040,"profile":10021637251255819188,"path":11083626557564857606,"deps":[[2201776792121879373,"common",false,10916959427110692800],[15994182914192700559,"block_buffer",false,10444947265612341536],[16354886752318960942,"inout",false,8837550958203107970]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cipher-c0b423198b0e8588/dep-lib-cipher","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
1 change: 1 addition & 0 deletions target/debug/.fingerprint/cmov-f2a42796f6ecd752/lib-cmov
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bc89c00cc3bba001
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[]","declared_features":"[]","target":7432811800008246249,"profile":4994364589152142672,"path":10688296896059619626,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cmov-f2a42796f6ecd752/dep-lib-cmov","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
1 change: 1 addition & 0 deletions target/debug/.fingerprint/cobs-292fad0fcaf506e4/lib-cobs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
70a293aa75d7f215
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"rustc":9777074978655410247,"features":"[]","declared_features":"[\"alloc\", \"default\", \"defmt\", \"serde\", \"std\", \"use_std\"]","target":6487856379781072225,"profile":4596809407697463924,"path":9432237677012080878,"deps":[[2448563160050429386,"thiserror",false,7824486516505253410]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cobs-292fad0fcaf506e4/dep-lib-cobs","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This file has an mtime of when this was started.
Loading