From e53bb1c8855d517a5ff5a9e53885caa643fc2374 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 13 Mar 2009 00:31:17 +0100 Subject: [PATCH] sha256.c: remove unneeded macro. --HG-- extra : convert_revision : d00be17201375e7562fb43b28e1c7b9da3b049b2 --- lib/sha256.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/lib/sha256.c b/lib/sha256.c index 78b4571177a..9520955d076 100644 --- a/lib/sha256.c +++ b/lib/sha256.c @@ -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: