Loading crypto/modes/ofb128.c +4 −2 Original line number Original line Diff line number Diff line Loading @@ -83,7 +83,8 @@ void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out, n = *num; n = *num; #if !defined(OPENSSL_SMALL_FOOTPRINT) #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) { while (n && len) { *(out++) = *(in++) ^ ivec[n]; *(out++) = *(in++) ^ ivec[n]; --len; --len; Loading Loading @@ -113,6 +114,7 @@ void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out, *num = n; *num = n; return; return; } while(0); } while(0); } /* the rest would be commonly eliminated by x86* compiler */ /* the rest would be commonly eliminated by x86* compiler */ #endif #endif while (l<len) { while (l<len) { Loading Loading
crypto/modes/ofb128.c +4 −2 Original line number Original line Diff line number Diff line Loading @@ -83,7 +83,8 @@ void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out, n = *num; n = *num; #if !defined(OPENSSL_SMALL_FOOTPRINT) #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) { while (n && len) { *(out++) = *(in++) ^ ivec[n]; *(out++) = *(in++) ^ ivec[n]; --len; --len; Loading Loading @@ -113,6 +114,7 @@ void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out, *num = n; *num = n; return; return; } while(0); } while(0); } /* the rest would be commonly eliminated by x86* compiler */ /* the rest would be commonly eliminated by x86* compiler */ #endif #endif while (l<len) { while (l<len) { Loading