SEC: Decomment blowfish_stackinit()
authorrasky <rasky@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 29 Sep 2010 21:42:09 +0000 (21:42 +0000)
committerrasky <rasky@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 29 Sep 2010 21:42:09 +0000 (21:42 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4373 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/sec/cipher/blowfish.h

index ac7d57bc21ddc866b2598a17dd91b1ce6c1a0dce..0895ceb877b7201223a2eb9e6eed8caee079e360 100644 (file)
@@ -52,10 +52,10 @@ typedef struct BlowfishContext
 } BlowfishContext;
 
 void blowfish_init(BlowfishContext *ctx);
-#if 0
+
 #define blowfish_stackinit(...) \
        ({ BlowfishContext *ctx = alloca(sizeof(BlowfishContext)); blowfish_init(ctx, ##__VA_ARGS__); &ctx->c; })
-#endif
+
 int blowfish_testSetup(void);
 int blowfish_testRun(void);
 int blowfish_testTearDown(void);