tallinn1960

Results 12 comments of tallinn1960

The signature looks like DER-encoded ASN1. It is an ASN1 Sequence of the two ASN1 Integers r and s, which constitute an ECSignature. ``` var sdecoded = base64Decode(signature); var bytes...

For decoding the public key I found a less limiting helper package 'basic_utils' on pub.dev. It features a function ``` ECPublicKey ecPublicKeyFromPem(String pem); ``` and seems to support all curves...

Has anything happened here? Looks like TheOneWithTheBraid did not publish anything on GitHub so far. I noticed the extension mechanism in Maily. Can it be used for that purpose?

Never mind. I looked into what extensions are able to provide and that doesn't cut it as it seems. I am willing to contribute to the task at hand, the...

Had a look this evening on the PGP/MIME spec, that seems to be rather easy. The whole MIME-Message is optionally signed, then encrypted and produces a overall MIME mail of...

So back from weekend and a day of work with keycloak (an openid/oauth service provider and IDM) and sw we are writing for it. Thunderbird is full standard compliant with...

Now I am to apologize, but it was a busy summer. Using your public key I’ve send you a variety of PGP mails generated by GPG Mail/MacOS - they should...

So eventually I found the time to start working on pgp integration. As this requires the open_pgp flutter plugin (there seems to be no pure dart implementation of openpgp) it...

I will work on composition of PGP/Mime messages next. What I would like you to do is to propose a place where the test/sample code should be put to work...

So, after I eventually managed to get an uri send by the OS into flutter code and learned about enabling Flutter Deep Linking that way (which is off by default)...