adding a new cipher

2004-10-22 Thread Paolo Serra
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: file crypto/objects/objects.txt modified line 660 !Alias

adding a new cipher

2004-10-17 Thread Paolo Serra
Hi all, I've implemented a new cipher (aes-ccm), I have been able to use it with "speed" and now I'd like to be able to launch it from command line, as example: openssl -enc -aes_CCM file_in file_out -iv like all the other ciphers present in openssl. After it I'll write and send you a patch. I'm

adding a new cipher

2004-10-16 Thread Paolo Serra
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 among the available ones. Kentlinux was very kind a

How to adding a new cipher algoritm (source code) to OpenSSL

2004-08-23 Thread 김연수
Hi~ I want to add a new cipher algorithm "SEED" to OpenSSL. So, I want to use new cipher suites such as SSL_CS_RSA_SEED_CBC_MD5, SSL_CS_RSA_SEED_CBC_SHA. In OpenSSL, Which parts must be changed?? Or How can I attach the SEED to OpenSSL?? thanks~