aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/seed/seed.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-01-01 10:06:16 -0500
committerJack Lloyd <[email protected]>2016-01-01 10:06:16 -0500
commit64caa9abd8699f3221977a6c4bcc21a5ee8c9040 (patch)
treefea3945d1e38ea0dfa1f34ce637b03583f814e5a /src/lib/block/seed/seed.h
parentd8b53e9acb370ba9c2f13ef9909e650b24134612 (diff)
Inline SEED's sbox tables
Simpler, and a bit faster also it seems (but not fast)
Diffstat (limited to 'src/lib/block/seed/seed.h')
-rw-r--r--src/lib/block/seed/seed.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lib/block/seed/seed.h b/src/lib/block/seed/seed.h
index 431af7309..299b0c398 100644
--- a/src/lib/block/seed/seed.h
+++ b/src/lib/block/seed/seed.h
@@ -27,14 +27,6 @@ class BOTAN_DLL SEED : public Block_Cipher_Fixed_Params<16, 16>
private:
void key_schedule(const byte[], size_t) override;
- class G_FUNC
- {
- public:
- u32bit operator()(u32bit) const;
- private:
- static const u32bit S0[256], S1[256], S2[256], S3[256];
- };
-
secure_vector<u32bit> K;
};