From: Niels Möller Date: Mon, 5 Jul 2010 19:40:42 +0000 (+0200) Subject: (enum blowfish_error): Deleted. X-Git-Tag: camellia_32bit_20100720~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=994af7edb8a226e9c1ab6feea8fc10e20c2b0f4c;p=thirdparty%2Fnettle.git (enum blowfish_error): Deleted. (struct blowfish_ctx): Deleted status attribute. Rev: nettle/blowfish.h:1.2 --- diff --git a/blowfish.h b/blowfish.h index 9e6175d6..768e15ef 100644 --- a/blowfish.h +++ b/blowfish.h @@ -48,13 +48,10 @@ extern "C" { #define _BLOWFISH_ROUNDS 16 -enum blowfish_error { BLOWFISH_OK, BLOWFISH_WEAK_KEY }; - struct blowfish_ctx { uint32_t s[4][256]; uint32_t p[_BLOWFISH_ROUNDS+2]; - enum blowfish_error status; }; /* On success, returns 1 and sets ctx->status to BLOWFISH_OK (zero).