diff options
author | Jack Lloyd <[email protected]> | 2015-10-15 12:45:01 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-10-15 12:45:01 -0400 |
commit | dcc448d5004653c52dada3d04fd92db3bd08f10e (patch) | |
tree | a5e8810f80e5df33220ab878b03010acb9477b40 /src/lib/pubkey/blinding.h | |
parent | ecd6d9de95fceba95aaf6e93a0543b05ef6a8369 (diff) |
MSVC build fix
Diffstat (limited to 'src/lib/pubkey/blinding.h')
-rw-r--r-- | src/lib/pubkey/blinding.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/pubkey/blinding.h b/src/lib/pubkey/blinding.h index 2525276ca..c1999feb7 100644 --- a/src/lib/pubkey/blinding.h +++ b/src/lib/pubkey/blinding.h @@ -34,6 +34,10 @@ class BOTAN_DLL Blinder std::function<BigInt (const BigInt&)> fwd_func, std::function<BigInt (const BigInt&)> inv_func); + Blinder(const Blinder&) = delete; + + Blinder& operator=(const Blinder&) = delete; + private: BigInt blinding_nonce() const; |