-
Notifications
You must be signed in to change notification settings - Fork 49
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
feat(op-signer): local KMS provider #252
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #252 +/- ##
==========================================
+ Coverage 53.11% 53.55% +0.43%
==========================================
Files 66 67 +1
Lines 7749 7845 +96
==========================================
+ Hits 4116 4201 +85
- Misses 3356 3364 +8
- Partials 277 280 +3
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
@@ -7,39 +7,51 @@ TLS_DIR=$SCRIPT_DIR/tls | |||
|
|||
version=$(openssl version) | |||
|
|||
if [[ "$version" != "LibreSSL"* ]] && [[ "$version" != "OpenSSL 1.1"* ]]; then |
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.
I've put up a PR to change gen-local-tls.sh
to use the alpine/openssl
docker image. This should help make this script more portable, so we don't need to depend on specific versions of installed TLS libs
Here is the PR #255
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.
that seems like a good change, i'll review, ty! i'm about to merge this PR however, so we'll need to update your PR once that happens to account for my changes. happy to take that task
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.
|
||
mkdir -p "$TLS_DIR" | ||
|
||
org="OP Labs" |
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.
Should the org be something more generic? Like OP-Signer Local Org
?
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.
perhaps, I just kept it as-is. its only used in testing anyway
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.
Update to OP-Signer Local Org
here:
https://github.com/ethereum-optimism/infra/pull/255/files#diff-48ea7eacdc0406935a5d46703b44e6014f4eaa35126ee1d6d66a030b3ecd91ceR13
merged the upstream pr, can you rebase onto main? |
ebaf355
to
0ddaf3b
Compare
Description
This PR implements a new
LOCAL
KMS provider in order to enable signing transactions using a local private key file, intended for use only in local development and testing environments.Changes
This PR:
provider
package up to the same level asservice
SignerServiceConfig
toProviderConfig
and moves it to theprovider
packageCloudKMSSignatureProvider
toGCPKMSSignatureProvider
LocalKMSSignatureProvider
README
to document the configuration formatgen-local-tls.sh
scriptTesting
To test this feature, you can use the following steps:
openssl ecparam -name secp256k1 -genkey -noout -param_enc explicit -out "ec_private.pem"
op-signer
to use this key./gen-local-tls.sh
script to generate a self-signed CA and mTLS keysop-signer
make build && ./bin/signer
curl -X POST -H "Content-Type: application/json" \ --cert tls/tls.crt \ --key tls/tls.key \ -d @test-rpc.json \ https://localhost:8080
Context
In service of: https://github.com/ethereum-optimism/platforms-team/issues/581