因此,在加密++中使用算法的常用方式似乎是使用 StringSinks
, 其启动方式是引用 std::string
。
但如果你不想使用std::string
< a href=>SecByteBlock
的东西,或者我是否必须创建自己的水槽类,用来针对重新增长的安全缓冲字符串类?
因此,在加密++中使用算法的常用方式似乎是使用 StringSinks
, 其启动方式是引用 std::string
。
但如果你不想使用std::string
< a href=>SecByteBlock
的东西,或者我是否必须创建自己的水槽类,用来针对重新增长的安全缓冲字符串类?
尝试 < a href=> "https://groups.google.com/d/msg/cryptopp-users/m79y5vh6Stg/IT-w6yToDlwJ" rel="nofol" >SecByteBlockSink 补丁 。 它被张贴到 Crypto++用户组, 但魏从未将它纳入图书馆。 这里还有一个wiki 页面 : < a href=" http://www.cryptopp.com/wiki/sectByteBlockSink" rel="nofollow"SecByteBlockSink 。
$ cat filters.h.patch
Index: filters.h
===================================================================
--- filters.h (revision 525)
+++ filters.h (working copy)
@@ -10,6 +10,7 @@
#include "queue.h"
#include "algparam.h"
#include <deque>
+#include <limits>
NAMESPACE_BEGIN(CryptoPP)
@@ -805,6 +806,31 @@
{SourceInitialize(pumpAll,
MakeParameters("RandomNumberGeneratorPointer",
&rng)("RandomNumberStoreSize", length));}
};
+class CRYPTOPP_DLL SecByteBlockSink : public Bufferless<Sink>
+{
+public:
+ SecByteBlockSink(SecByteBlock& sbb) : m_sbb(sbb) { }
+
+ size_t Put2(const byte *inString, size_t length, int /*messageEnd*/, bool /*blocking*/)
+ {
+ if(!inString || !length) return length;
+
+ const size_t size = m_sbb.size();
+ const size_t max = std::numeric_limits<std::size_t>::max() - size;
+
+ if(length > max)
+ InvalidArgument("SecByteBlockSink: buffer overflow");
+
+ m_sbb.resize(size+length);
+ memcpy(m_sbb.begin()+size, inString, length);
+
+ return 0;
+ }
+
+private:
+ SecByteBlock& m_sbb;
+};
+
NAMESPACE_END
#endif
ctr mode makes it possible to use a block cipher as a stream cipher but how strong will be the encryption in this mode ?
I need help please. I started to program a common brute forcer / password guesser with CUDA (2.3 / 3.0beta). I tried different ways to generate all possible plain text "candidates" of a defined ASCII ...
I am using the Bouncy Castle Java cryptographic algorithm implementation. I am getting an IllegalKeySizeException. To overcome this I have even changed my java security jars (local_policy.jar and ...
I want to encrypt some server data using .NET s RSACryptoServiceProvider and decrypt it when someone enters a key/password via a web page. What are my options for protecting, or ideally not even ...
For each of our binary assets we generate a MD5 hash. This is used to check whether a certain binary asset is already in our application. But is it possible that two different binary assets generate ...
I used openSSL command to create 2 files: 1 for RSA public key & 1 for RSA private key. How do I recover RSA keys using C? Specifically, I have these functions: RSA_public_encrypt(read_num, ...
Hi i am trying to set up an RSA cryptosystem i have all the values except d selected prime numbers: p=1889, q=2003, n=3783667, phi=3779776, e= 61 i got stuck finding d could anyone help me to figure ...
This is a combinatorics question with some theory in hashing algorithms required. Let s say the input can be any random sequence of bytes 30 kB to 5 MB of size (I guess that makes quite a few ...