Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Encryption and key management (ready for review) #156

Merged
merged 48 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
ef311f7
Encryption and simple key management
Oct 23, 2024
c45c248
Remove old function
Oct 23, 2024
1290d4f
Merge branch 'main' into ry/128-keymanagement-encryption
ryardley Oct 23, 2024
6c7d28a
Add secret to integration test
Oct 23, 2024
76461f5
Pin vars and remove clone
Oct 23, 2024
42b54d2
Add comprehensive tests
Oct 23, 2024
b06d96b
Update to use a vec of 1s
Oct 23, 2024
95a1fb7
Formatting
Oct 23, 2024
cc95e36
Structure out Cipher and PasswordManager trait
Oct 24, 2024
f4cc743
restructure config
Oct 24, 2024
9a5585a
Remove use statement
Oct 24, 2024
ba1357a
Merge branch 'main' into ry/128-keymanagement-encryption
ryardley Oct 25, 2024
642db8c
Restructure CLI
Oct 25, 2024
9b13848
Tidy up docs
Oct 25, 2024
90cb677
Fix up redundant files
Oct 25, 2024
00440d7
Save encrypted private key
Oct 26, 2024
b208e7b
Ensure test works
Oct 28, 2024
f5d4817
Fix folders being deleted
Oct 28, 2024
67822b0
Formatting
Oct 28, 2024
eba452f
Try using the supplied home var
Oct 28, 2024
4bd5815
Formatting
Oct 28, 2024
00c7636
Debug env
Oct 28, 2024
0b6da01
Try setting TMPDIR to RUNNER_TEMP
Oct 28, 2024
e28c5b4
Try setting env in ga
Oct 28, 2024
443c0fb
Check env
Oct 28, 2024
3a87a6f
Try setting in step
Oct 28, 2024
04ee093
Try debug where the file is written to
Oct 28, 2024
004637b
debug config_file()
Oct 28, 2024
90d30aa
Format
Oct 28, 2024
632b3a3
Add tracing
Oct 28, 2024
e2b01d1
Try setting XDG_CONFIG_HOME
Oct 28, 2024
1e2153c
Remove debugging
Oct 28, 2024
b083df2
Formatting
Oct 28, 2024
bb820bd
Add comment
Oct 28, 2024
1bbb063
Format
Oct 28, 2024
4440776
Update comment
Oct 28, 2024
f19caf7
Update comment
Oct 28, 2024
97638e3
Delete packages/ciphernode/config/src/parsers.rs
ryardley Oct 28, 2024
e8d0699
Update rust-ci.yml
ryardley Oct 28, 2024
c5d3ad6
Woops
Oct 28, 2024
1b482f2
Update packages/ciphernode/enclave/src/main.rs
ryardley Oct 28, 2024
d741abd
Add zeroize
Oct 28, 2024
e079b2d
remove allocation
Oct 28, 2024
475c20a
add shebang
Oct 28, 2024
15d24c6
Add home expansion to normalization
ryardley Oct 28, 2024
7c02437
Update tests/basic_integration/lib/clean_folders.sh
ryardley Oct 28, 2024
bede3ed
Fix up blank password validation and remove exit message
ryardley Oct 29, 2024
3f12da8
Merge branch 'main' into ry/128-keymanagement-encryption
ryardley Oct 31, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on:
jobs:
ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

Expand Down Expand Up @@ -43,5 +42,6 @@ jobs:

- name: Run tests
run: |
env &&
ryardley marked this conversation as resolved.
Show resolved Hide resolved
cd ./packages/ciphernode/
cargo test
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@
"test": "yarn evm:test && yarn ciphernode:test",
"test:integration": "./tests/basic_integration/test.sh",
"coverage": "yarn evm:coverage",
"ciphernode:launch": "cd packages/ciphernode && ./scripts/launch.sh",
"enclave": "cd packages/ciphernode && ./scripts/launch.sh",
"ciphernode:lint": "cd packages/ciphernode && cargo fmt -- --check",
"ciphernode:add": "cd packages/evm && yarn ciphernode:add",
"ciphernode:remove": "cd packages/evm && yarn ciphernode:remove",
"ciphernode:aggregator": "cd packages/ciphernode && ./scripts/aggregator.sh",
"ciphernode:test": "cd packages/ciphernode && cargo test",
"ciphernode:build": "cd packages/ciphernode && cargo build --release",
"preciphernode:build": "yarn evm:compile",
Expand Down
Loading
Loading