Re: EVP_aes_128_cbc_hmac_sha256() not working on arm64 architecture

2019-05-08 Thread Mirko J. Ploch
Thank you Matt. You have been very helpful. On Tue, May 7, 2019 at 6:40 PM Matt Caswell wrote: > > > On 07/05/2019 20:47, Mirko J. Ploch wrote: > > Thank you for your response. You answered my question. It is not > available on my > > target platform architecture (arm64). > > > > I do have a spe

Re: EVP_aes_128_cbc_hmac_sha256() not working on arm64 architecture

2019-05-07 Thread Matt Caswell
On 07/05/2019 20:47, Mirko J. Ploch wrote: > Thank you for your response. You answered my question. It is not available on > my > target platform architecture (arm64). > > I do have a specific need for that cipher, and it does not have anything to do > with TLS. An app that I am working on req

Re: EVP_aes_128_cbc_hmac_sha256() not working on arm64 architecture

2019-05-07 Thread Jakob Bohm via openssl-users
For future library versions (4.x or whatever), it would be useful to make these combo-ciphers be better documented and available via library-level calls to separate block and mac operations where optimized intertwined implementations are not provided. Obviously, the set of such combo loops should

Re: EVP_aes_128_cbc_hmac_sha256() not working on arm64 architecture

2019-05-07 Thread Mirko J. Ploch
Thank you for your response. You answered my question. It is not available on my target platform architecture (arm64). I do have a specific need for that cipher, and it does not have anything to do with TLS. An app that I am working on requires it for JSON Web Encryption (JWE) as the required encr

Re: EVP_aes_128_cbc_hmac_sha256() not working on arm64 architecture

2019-05-07 Thread Matt Caswell
On 06/05/2019 16:41, Mirko J. Ploch wrote: > Hello, > > I'm trying to useĀ EVP_aes_128_cbc_hmac_sha256() for encryption on an iOS > device > with arm64 architecture. I was able to get it working with the x86_64 > architecture when running the iOS device simulator on an iMac. Is this just > not

EVP_aes_128_cbc_hmac_sha256() not working on arm64 architecture

2019-05-06 Thread Mirko J. Ploch
Hello, I'm trying to use EVP_aes_128_cbc_hmac_sha256() for encryption on an iOS device with arm64 architecture. I was able to get it working with the x86_64 architecture when running the iOS device simulator on an iMac. Is this just not capable of working on an arm64 platform? Looking at the code