Re: adding a new cipher

2004-10-22 Thread Dr. Stephen Henson
On Fri, Oct 22, 2004, Paolo Serra wrote: > Hi all, > I'near to integrate my AES-CCM in openssl, but I need a little help. I've > created my file AES_CCM_encrypt (I'm sure it's ok), I saved it in > crypto/aes and > added the prototipe in crypto/aes/aes.h > > Then I modified the following files: >

Re: adding a new cipher

2004-10-18 Thread Ng Pheng Siong
On Mon, Oct 18, 2004 at 04:06:07PM +, Paolo Serra wrote: > but I think it is not functioning correctly because I've never wrote that > my ciphers needs the program that I've added, CCM_AES_encrypt(..), and I > fear it calls some other program like aes_cbc_encrypt, as I can see reading > the

Re: adding a new cipher

2004-10-18 Thread Ng Pheng Siong
On Sun, Oct 17, 2004 at 02:58:56PM +0200, Dr. Stephen Henson wrote: > The OP is talking about that though I'm not sure if he'll send us a patch. If > he is then I'd agree that adding the OIDs to objects.txt is the way to go. Ok, gotcha: if sending a patch, grab a fixed number, else use object_crea

Re: adding a new cipher

2004-10-17 Thread Dr. Stephen Henson
On Sat, Oct 16, 2004, Paolo Serra wrote: > Hi all, > I'm trying to integrate a new cipher (aes-ccm) into the crypto lib. I want > to have the new algorithm available from every application linking the > library but we have not found where we have to add the cipher definition to > have it listed

Re: adding a new cipher

2004-10-17 Thread Dr. Stephen Henson
On Sun, Oct 17, 2004, Richard Levitte - VMS Whacker wrote: > In message <[EMAIL PROTECTED]> on Sun, 17 Oct 2004 14:07:20 +0200, "Dr. Stephen > Henson" <[EMAIL PROTECTED]> said: > > steve> On Sun, Oct 17, 2004, Ng Pheng Siong wrote: > steve> > steve> > On Sat, Oct 16, 2004 at 02:32:54PM +, P

Re: adding a new cipher

2004-10-17 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Sun, 17 Oct 2004 14:07:20 +0200, "Dr. Stephen Henson" <[EMAIL PROTECTED]> said: steve> On Sun, Oct 17, 2004, Ng Pheng Siong wrote: steve> steve> > On Sat, Oct 16, 2004 at 02:32:54PM +, Paolo Serra wrote: steve> > > crytpo/objects/obj_dat.num steve> > > crypt

Re: adding a new cipher

2004-10-17 Thread Dr. Stephen Henson
On Sun, Oct 17, 2004, Ng Pheng Siong wrote: > On Sat, Oct 16, 2004 at 02:32:54PM +, Paolo Serra wrote: > > crytpo/objects/obj_dat.num > > crypto/objects/objects.txt > > Did you modify these two files to give your new ciphers names/ids? In > 0.9.7d the numbers run sequentially and the last nu

Re: adding a new cipher

2004-10-17 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Sun, 17 Oct 2004 16:09:44 +0800, Ng Pheng Siong <[EMAIL PROTECTED]> said: ngps> On Sat, Oct 16, 2004 at 02:32:54PM +, Paolo Serra wrote: ngps> > crytpo/objects/obj_dat.num ngps> > crypto/objects/objects.txt ngps> ngps> Did you modify these two files to give

Re: adding a new cipher

2004-10-17 Thread Ng Pheng Siong
On Sat, Oct 16, 2004 at 02:32:54PM +, Paolo Serra wrote: > crytpo/objects/obj_dat.num > crypto/objects/objects.txt Did you modify these two files to give your new ciphers names/ids? In 0.9.7d the numbers run sequentially and the last number is ms_upn == 649. Just pick some numbers for yours,

Re: adding a new cipher

2004-10-16 Thread Richard Levitte - VMS Whacker
[I'm keeping this in openssl-dev, as it feels that's where it belongs] In message <[EMAIL PROTECTED]> on Sat, 16 Oct 2004 14:32:54 +, "Paolo Serra" <[EMAIL PROTECTED]> said: paolino55> I'm trying to integrate a new cipher (aes-ccm) into the paolino55> crypto lib. I want to have the new algor

Re: Adding a new Cipher

2004-10-06 Thread Massimiliano Pala
kentlinux wrote: [...] It is only for crypto I do not know anything about SSL Thank you, this is exaclty what I was looking for. When ready we will send the patch to add aes-ccm among the ciphers. Have a nice day! -- Best Regards, Massimiliano Pala --o---

Re: Adding a new Cipher

2004-10-05 Thread kentlinux
> Hello all, > > we are working to integrate a new cipher (aes-ccm) into the crypto lib. > We want to have the new algorithm available from every application linking > the library but we have not found where we have to add the cipher > definition to have it listed among the available ones. > > Can