-
Notifications
You must be signed in to change notification settings - Fork 201
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
Encrypted logs #306
Encrypted logs #306
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Did you test the failure modes?
- upload a .ulg with the .ulge extension
- upload a .ulge with the .ulg extension
- incorrect/missing private key
I tested the following:
Regarding:
I can take care of them , see my answer above for your question regarding parsing! |
This pull request has been mentioned on Discussion Forum for PX4, Pixhawk, QGroundControl, MAVSDK, MAVLink. There might be relevant details there: |
This pull request has been mentioned on Discussion Forum for PX4, Pixhawk, QGroundControl, MAVSDK, MAVLink. There might be relevant details there: |
This pull request has been mentioned on Discussion Forum for PX4, Pixhawk, QGroundControl, MAVSDK, MAVLink. There might be relevant details there: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, looks pretty good
if not os.path.exists(private_key_path): | ||
raise FileNotFoundError(f"Private key not found at {private_key_path}") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could be checked on startup (if the path is set in the config)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It could be, but in that case I think a variable should be added to avoid checking it when working with normal logs
Added the key path to the config, modified the logic accordingly Created local method in upload.py and modified the logic slightly
@bkueng I made most of the suggested modifications and left a comment for the rest. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a few minor CI failures: https://github.com/PX4/flight_review/actions/runs/14179570507/job/39750863306?pr=306
app/config_default.ini
Outdated
@@ -23,6 +23,9 @@ mapbox_api_access_token = | |||
# available RAM and Log file size. Should be a power of 2. | |||
log_cache_size = 8 | |||
|
|||
# Encryption key | |||
ulge_private_key = ../private_key/private_key.pem |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you keep this empty by default? You could add it as a comment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good to merge
Added logic to handle encrypted logs(.ulge) files