You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: allow to specify custom signatureKey in the config.ini (#1024)
* make the signaturePubKey overwritable
* Add debug logging for signature key parsing and handle newline escape sequences
* Add MustParseRsaPublicKey function for parsing PEM formatted public keys
* Remove debug print statement for signature key and fix comment typo in key parsing logic
* Add error logging for command verification and update comment for public key usage
* refactor(main.go) remove unnecessary print statement in parseIni function
* refactor(utilities): improve formatting in ParseRsaPublicKey function
* style(tools): align field declarations for improved readability
---------
Co-authored-by: Luca Rinaldi <[email protected]>
Copy file name to clipboardexpand all lines: globals/globals.go
+10-3
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,15 @@
15
15
16
16
package globals
17
17
18
-
// DefaultIndexURL is the default index url
19
18
var (
20
-
// SignatureKey is the public key used to verify commands and url sent by the builder
21
-
SignatureKey="-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvc0yZr1yUSen7qmE3cxF\nIE12rCksDnqR+Hp7o0nGi9123eCSFcJ7CkIRC8F+8JMhgI3zNqn4cUEn47I3RKD1\nZChPUCMiJCvbLbloxfdJrUi7gcSgUXrlKQStOKF5Iz7xv1M4XOP3JtjXLGo3EnJ1\npFgdWTOyoSrA8/w1rck4c/ISXZSinVAggPxmLwVEAAln6Itj6giIZHKvA2fL2o8z\nCeK057Lu8X6u2CG8tRWSQzVoKIQw/PKK6CNXCAy8vo4EkXudRutnEYHEJlPkVgPn\n2qP06GI+I+9zKE37iqj0k1/wFaCVXHXIvn06YrmjQw6I0dDj/60Wvi500FuRVpn9\ntwIDAQAB\n-----END PUBLIC KEY-----"
19
+
// ArduinoSignaturePubKey is the public key used to verify commands and url sent by the builder
20
+
ArduinoSignaturePubKey=`-----BEGIN PUBLIC KEY-----
0 commit comments