Re: [openssl-users] How to Implement a new PubKey method correctly

2018-08-24 Thread Dmitry Belyavsky
Dear Max, You can take a look at https://github.com/gost-engine/engine as an example of providing new algorithms via engine. On Fri, Aug 24, 2018 at 10:45 AM Dr. Pala wrote: > Hi all, > > I am working on providing a new Public Key method that will handle > Composite Keys (i.e., multiple keys w

Re: [openssl-users] How to Implement a new PubKey method correctly

2018-08-23 Thread Matt Caswell
On 22/08/18 15:55, Dr. Pala wrote: > Hi all, > > I am working on providing a new Public Key method that will handle > Composite Keys (i.e., multiple keys with different algos - e.g., one RSA > and one EC) and Composite Signatures  (i.e., multiple signatures > generated with the corresponding Com

Re: [openssl-users] How to Implement a new PubKey method correctly

2018-08-22 Thread Richard Levitte
In message on Wed, 22 Aug 2018 08:55:02 -0600, "Dr. Pala" said: director> Hi all, director> director> I am working on providing a new Public Key method that will handle director> Composite Keys (i.e., multiple keys with different algos - e.g., one RSA director> and one EC) and Composite Signa

[openssl-users] How to Implement a new PubKey method correctly

2018-08-22 Thread Dr. Pala
Hi all, I am working on providing a new Public Key method that will handle Composite Keys (i.e., multiple keys with different algos - e.g., one RSA and one EC) and Composite Signatures  (i.e., multiple signatures generated with the corresponding Composite Keys). In particular, I would like to be a