aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/tss.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-10-06 15:48:22 +0000
committerlloyd <[email protected]>2009-10-06 15:48:22 +0000
commit7fdaf97767b3f63f4c6768c61755a0f67d9b9b13 (patch)
treeb0ff646edc7edbefd92f5556ab5f3e4e32264485 /doc/examples/tss.cpp
parenta37a57edd56b3fcf449f7028f4fd70a2efb9c789 (diff)
Add a TSS example
Diffstat (limited to 'doc/examples/tss.cpp')
-rw-r--r--doc/examples/tss.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/examples/tss.cpp b/doc/examples/tss.cpp
new file mode 100644
index 000000000..1881ffe24
--- /dev/null
+++ b/doc/examples/tss.cpp
@@ -0,0 +1,38 @@
+#include <botan/botan.h>
+#include <botan/tss.h>
+#include <iostream>
+#include <stdio.h>
+
+namespace {
+
+void print(const Botan::SecureVector<Botan::byte>& r)
+ {
+ for(Botan::u32bit i = 0; i != r.size(); ++i)
+ printf("%02X", r[i]);
+ printf("\n");
+ }
+
+}
+
+int main()
+ {
+ using namespace Botan;
+
+ LibraryInitializer init;
+
+ AutoSeeded_RNG rng;
+
+ byte id[16];
+ for(int i = 0; i != 16; ++i)
+ id[i] = i;
+
+ const byte S2[] = { 0xDE, 0xAD, 0xCA, 0xFE, 0xBA, 0xBE, 0xBE, 0xEF };
+
+ std::vector<RTSS_Share> shares =
+ RTSS_Share::split(4, 6, S2, sizeof(S2), id, rng);
+
+ for(size_t i = 0; i != shares.size(); ++i)
+ std::cout << i << " = " << shares[i].to_string() << "\n";
+
+ print(RTSS_Share::reconstruct(shares));
+ }