aboutsummaryrefslogtreecommitdiffstats
path: root/src/entropy/cryptoapi_rng
diff options
context:
space:
mode:
Diffstat (limited to 'src/entropy/cryptoapi_rng')
-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;
};