summaryrefslogtreecommitdiff
path: root/blowfish.h
diff options
context:
space:
mode:
Diffstat (limited to 'blowfish.h')
-rw-r--r--blowfish.h3
1 files changed, 0 insertions, 3 deletions
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).