smimeasym 2.0.0

A wrapper around openssl's S/MIME asymmetrical encryption, that is compatible with the openssl cli


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

smimeasym S/MIME asymmetrical encryption

CI

So the problem to solve is that I needed a function that encrypts an array of ubytes with multiple public keys. The resulting, encrypted, array of bytes, when saved to a file, should be decrypted-able by any private key matching any of the used public key. This should be possible with the openssl cli.

Usage

There are two main functions

ubyte[] smimeEncryption(ubyte[] buf, string[] publicKeyFilenames);

ubyte[] smimeDecryption(ubyte[] buf, string privateKeyFilename);

X509* loadCert(string filename);
X509* loadCertFromString(string theCert);
void freeCert(X509* certToFree);

ubyte[] smimeEncryptionWithCerts(ubyte[] buf, X509*[] certs);

The opencli should be able to decrypt created files from the data from smimeEncryption with the following shell command

openssl smime -decrypt -in secrets.txt.enc -inform PEM -inkey bob.key
Authors:
  • Robert Schadek
Dependencies:
none
Versions:
3.3.0 2022-Feb-04
3.2.0 2021-May-21
3.1.0 2021-May-21
3.0.0 2021-May-18
2.0.4 2021-May-13
Show all 13 versions
Download Stats:
  • 7 downloads today

  • 29 downloads this week

  • 104 downloads this month

  • 5585 downloads total

Score:
1.9
Short URL:
smimeasym.dub.pm