-
-
Notifications
You must be signed in to change notification settings - Fork 151
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
Invalid Signature #213
Comments
Hi @ArkajyotiChatterjee , |
Yes, only the commandline. The key should be crypto.SHA256. |
Hi @facchinm , @matteosuppo , for testing purposes I was using openSSL from my GIT Bash to generate the key pair and sign the commandline. The codes are as follows: openssl rsa -in private.pem -outform PEM -pubout -out public.pem //public key(used in config.ini) echo ""{runtime.tools.avrdude.path}/bin/avrdude" "-C{runtime.tools.avrdude.path}/etc/avrdude.conf" {upload.verbose} -patmega32u4 -cavr109 -P{serial.port} -b57600 -D "-Uflash:w:{build.path}/{build.project_name}.hex:i"" | openssl dgst -sha256 -sign private.pem -out /tmp/sign.sha256 openssl base64 -in /tmp/sign.sha256 -out sign_commndline // the signature file` Still I am getting the error"Signature is Invalid". Any ideas as to exactly what I am missing? |
Hey guys,any help would be appreciated a lot. |
The only thing that comes to mind it that maybe the quotes are being escaped. You could try with the following go code: import (
"crypto/rand"
"crypto/rsa"
"crypto/sha256"
"crypto/x509"
"encoding/pem"
)
func sign(message []byte, key []byte) ([]byte, error) {
block, _ := pem.Decode(key)
if block == nil {
return nil, errors.New("While decoding key " + string(key))
}
rng := rand.Reader
private, err := x509.ParsePKCS1PrivateKey(block.Bytes)
if err != nil {
return nil, errors.New("While parsing key "+ key)
}
hashed := sha256.Sum256(message)
signature, err := rsa.SignPKCS1v15(rng, private, crypto.SHA256, hashed[:])
if err != nil {
return nil, errors.New("While signing message "+message+" with key " + private)
}
return signature, nil
} and see if the generated signature is the same |
I don't know the entire process but if I run --generateCert all keys are ECDSA,I think the signature must be made with key.pem, but the function verifyCommandLine seems to use a RSA in line 216: Log http2: panic serving 127.0.0.1:43880: interface conversion: interface {} is *ecdsa.PublicKey, not *rsa.PublicKey |
The certificates generated with --generateCert are only used for ssl, they are not used to sign the commandline |
Ups! I used key.pem to sign. I ' ll try generating my own RSA, but with ECDSA I can't verify the signature until I generated it with Python [0], maybe there is a problem with signing with openssl. [0] https://thanethomson.com/2018/11/30/validating-ecdsa-signatures-golang/ |
It shouldn't be possible to verify a signature with a ecdsa key, since it expects an rsa public key |
Not if I add a new function for that :P, I tried again with RSA and the problem was that
is wrong since the code expect the signature in hex:
I couldn't create the signature with openssl or Python, then I used the example in https://stackoverflow.com/questions/20655702/signing-and-decoding-with-rsa-sha-in-go. The digest was the same in Python - Go, but the signature didn't match (using pip install rsa) Update: Finally... how to make the signature:
Hope this helps, @ArkajyotiChatterjee |
I seem to be stuck at this signature point as well and I am trying to just see if I can get the Arduino Create Agent to recognize a valid signature. I am using openssl to generate the private and public keys:
And I used the go code above recommended by @matteosuppo to generate a signature for a commandline that is just the word "test" Then, as a test in my terminal, I am trying:
Still getting "signature is invalid" I have tried multiple variations of how to format the signatureKey value from in the config.ini file:
Etc. Any additional thoughts, or recommendations would be much appreciated if you see I am doing something incorrect here. |
@ProgrammingElectronics, thanks for the detailed report. |
The agent @ProgrammingElectronics could you confirm that the new releases fix the issue? |
I close the issue. |
Hello. I am trying to call the arduino create agent plugin from my localhost to upload a hex file to my arduino. I generated a pair of public and private keys and updated the public key in the config.ini file. Then I am generating the signature of my commandline using my private key and then I am updating the same on the js code. But still when I run the code, I am getting "Signature is Invalid". Any ideas as to what I am doing wrong. I am pasting the json payload I am trying to upload .
The text was updated successfully, but these errors were encountered: