sha256.c: remove unneeded macro.

--HG--
extra : convert_revision : d00be17201375e7562fb43b28e1c7b9da3b049b2
This commit is contained in:
Juan RP 2009-03-13 00:31:17 +01:00
parent aee08a7f8f
commit e53bb1c885
1 changed files with 0 additions and 12 deletions

View File

@ -66,18 +66,6 @@
}
#endif /* WORDS_BIGENDIAN */
/*
* Macro for incrementally adding the unsigned 64-bit integer n to the
* unsigned 128-bit integer (represented using a two-element array of
* 64-bit words):
*/
#define ADDINC128(w,n) { \
(w)[0] += (sha2_word64)(n); \
if ((w)[0] < (n)) { \
(w)[1]++; \
} \
}
/*** THE SIX LOGICAL FUNCTIONS ****************************************/
/*
* Bit shifting and rotation (used by the six SHA-XYZ logical functions: