aboutsummaryrefslogtreecommitdiffstats
path: root/src/pk_pad/emsa_raw/emsa_raw.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pk_pad/emsa_raw/emsa_raw.h')
-rw-r--r--src/pk_pad/emsa_raw/emsa_raw.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/pk_pad/emsa_raw/emsa_raw.h b/src/pk_pad/emsa_raw/emsa_raw.h
deleted file mode 100644
index 8ab763575..000000000
--- a/src/pk_pad/emsa_raw/emsa_raw.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
-* EMSA-Raw
-* (C) 1999-2007 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#ifndef BOTAN_EMSA_RAW_H__
-#define BOTAN_EMSA_RAW_H__
-
-#include <botan/emsa.h>
-
-namespace Botan {
-
-/**
-* EMSA-Raw - sign inputs directly
-* Don't use this unless you know what you are doing.
-*/
-class BOTAN_DLL EMSA_Raw : public EMSA
- {
- private:
- void update(const byte[], size_t);
- secure_vector<byte> raw_data();
-
- secure_vector<byte> encoding_of(const secure_vector<byte>&, size_t,
- RandomNumberGenerator&);
- bool verify(const secure_vector<byte>&, const secure_vector<byte>&,
- size_t);
-
- secure_vector<byte> message;
- };
-
-}
-
-#endif