Loading crypto/modes/ctr128.c +4 −2 Original line number Diff line number Diff line Loading @@ -125,7 +125,8 @@ void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out, n = *num; #if !defined(OPENSSL_SMALL_FOOTPRINT) if (16%sizeof(size_t) == 0) do { /* always true actually */ if (16%sizeof(size_t) == 0) { /* always true actually */ do { while (n && len) { *(out++) = *(in++) ^ ecount_buf[n]; --len; Loading Loading @@ -158,6 +159,7 @@ void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out, *num = n; return; } while(0); } /* the rest would be commonly eliminated by x86* compiler */ #endif while (l<len) { Loading Loading
crypto/modes/ctr128.c +4 −2 Original line number Diff line number Diff line Loading @@ -125,7 +125,8 @@ void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out, n = *num; #if !defined(OPENSSL_SMALL_FOOTPRINT) if (16%sizeof(size_t) == 0) do { /* always true actually */ if (16%sizeof(size_t) == 0) { /* always true actually */ do { while (n && len) { *(out++) = *(in++) ^ ecount_buf[n]; --len; Loading Loading @@ -158,6 +159,7 @@ void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out, *num = n; return; } while(0); } /* the rest would be commonly eliminated by x86* compiler */ #endif while (l<len) { Loading