I have created a signed package for updater plugin. I have used the public key generated by the cargo generate and base64 decoded it looks like this
untrusted comment: minisign public key: C07B7C519EE6B39D
RWSds+aeUXx7wB8ImuRGBnmT9fCEUIjWueVz1YG/FVb7GN7oudAg1zq0
It is 56 chars and it fails on InvalidEncodig issue. I am looking into the updater and minisign code and it expects the public key to be 74 binary length, but my public key (provided by cargo tauri build command) has length just 42. How to fix it? Thanks