aboutsummaryrefslogtreecommitdiffstats
path: root/src/cms/cms_dalg.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-09 04:14:30 +0000
committerlloyd <[email protected]>2010-03-09 04:14:30 +0000
commitac0ec9b832a337c91cb451e0b8d12b77fa27a20c (patch)
tree0c5e95abcf4be37bc84174120303c2a5166d50c0 /src/cms/cms_dalg.cpp
parentcdcd3a9aba28cefcccb64f91fb56d3847f6c9130 (diff)
Various updates: unique_ptr, using chrono, merge fixups, etc
Diffstat (limited to 'src/cms/cms_dalg.cpp')
-rw-r--r--src/cms/cms_dalg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cms/cms_dalg.cpp b/src/cms/cms_dalg.cpp
index 2a380b596..f727f2a3f 100644
--- a/src/cms/cms_dalg.cpp
+++ b/src/cms/cms_dalg.cpp
@@ -29,7 +29,7 @@ SecureVector<byte> hash_of(const SecureVector<byte>& content,
Algorithm_Factory& af = global_state().algorithm_factory();
- std::auto_ptr<HashFunction> hash_fn(af.make_hash_function(hash_name));
+ std::unique_ptr<HashFunction> hash_fn(af.make_hash_function(hash_name));
return hash_fn->process(content);
}