aboutsummaryrefslogtreecommitdiffstats
path: root/src/entropy
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-11-02 12:47:46 +0000
committerlloyd <[email protected]>2010-11-02 12:47:46 +0000
commitae1803f4983b9b178c32ebfd4f395cf2ccd939c9 (patch)
tree86af460892125f39ab9455f308c766a6362be814 /src/entropy
parentef0d938e243281af289820a8757d42948303a17f (diff)
Doxygen
Diffstat (limited to 'src/entropy')
-rw-r--r--src/entropy/cryptoapi_rng/es_capi.cpp4
-rw-r--r--src/entropy/cryptoapi_rng/es_capi.h6
2 files changed, 7 insertions, 3 deletions
diff --git a/src/entropy/cryptoapi_rng/es_capi.cpp b/src/entropy/cryptoapi_rng/es_capi.cpp
index 1de76dabb..420977a9b 100644
--- a/src/entropy/cryptoapi_rng/es_capi.cpp
+++ b/src/entropy/cryptoapi_rng/es_capi.cpp
@@ -50,7 +50,7 @@ class CSP_Handle
}
-/**
+/*
* Gather Entropy from Win32 CAPI
*/
void Win32_CAPI_EntropySource::poll(Entropy_Accumulator& accum)
@@ -71,7 +71,7 @@ void Win32_CAPI_EntropySource::poll(Entropy_Accumulator& accum)
}
}
-/**
+/*
* Win32_Capi_Entropysource Constructor
*/
Win32_CAPI_EntropySource::Win32_CAPI_EntropySource(const std::string& provs)
diff --git a/src/entropy/cryptoapi_rng/es_capi.h b/src/entropy/cryptoapi_rng/es_capi.h
index f55713e92..cec7fba5e 100644
--- a/src/entropy/cryptoapi_rng/es_capi.h
+++ b/src/entropy/cryptoapi_rng/es_capi.h
@@ -23,7 +23,11 @@ class Win32_CAPI_EntropySource : public EntropySource
void poll(Entropy_Accumulator& accum);
- Win32_CAPI_EntropySource(const std::string& = "");
+ /**
+ * Win32_Capi_Entropysource Constructor
+ * @provs list of providers, seperated by ':'
+ */
+ Win32_CAPI_EntropySource(const std::string& provs = "");
private:
std::vector<u64bit> prov_types;
};