blob: 8758aad21125553dbb9f5035ad60183451430cbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/**
* Timestamp Functions Source File
* (C) 1999-2008 Jack Lloyd
*/
#include <botan/timer.h>
#include <botan/loadstor.h>
#include <botan/util.h>
#include <ctime>
namespace Botan {
/**
* Get the system clock
*/
u64bit system_time()
{
return static_cast<u64bit>(std::time(0));
}
/**
* Read the clock and return the output
*/
u32bit Timer::fast_poll(byte out[], u32bit length)
{
const u64bit clock_value = this->clock();
for(u32bit j = 0; j != sizeof(clock_value); ++j)
out[j % length] ^= get_byte(j, clock_value);
return (length < 8) ? length : 8;
}
u32bit Timer::slow_poll(byte out[], u32bit length)
{
return fast_poll(out, length);
}
/**
* Combine a two time values into a single one
*/
u64bit Timer::combine_timers(u32bit seconds, u32bit parts, u32bit parts_hz)
{
static const u64bit NANOSECONDS_UNITS = 1000000000;
u64bit res = seconds * NANOSECONDS_UNITS;
res += parts * (NANOSECONDS_UNITS / parts_hz);
return res;
}
/**
* ANSI Clock
*/
u64bit ANSI_Clock_Timer::clock() const
{
return combine_timers(std::time(0), std::clock(), CLOCKS_PER_SEC);
}
}
|