Re: ESP output when using NULL encryption and NON authentication

2008-12-02 Thread Dean Jenkins
Hi Herbert, Thanks for the clue. I had set the IV size to AES_BLOCK_SIZE in my NULL crypto registered structure. Now fixed the IV size to 0 and put the maxauthsize also to 0. Now I have basic Async AEAD NULL enc and NON auth working with ping over ESP. Regards, Dean Jenkins MontaVista Software --

Re: ESP output when using NULL encryption and NON authentication

2008-11-28 Thread Herbert Xu
Dean Jenkins <[EMAIL PROTECTED]> wrote: > > However, ESP's call to crypto_aead_decrypt() puts the start of the > encapsulated packet (first 16 bytes) into the IV field of the AEAD request > instead of wholly in the src scatterlist. The dst scatterlist is in fact the > same src scatterlist. Well