diff options
Diffstat (limited to 'nacl/curvecp/safenonce.c')
-rw-r--r-- | nacl/curvecp/safenonce.c | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/nacl/curvecp/safenonce.c b/nacl/curvecp/safenonce.c deleted file mode 100644 index cfcabcd2..00000000 --- a/nacl/curvecp/safenonce.c +++ /dev/null | |||
@@ -1,74 +0,0 @@ | |||
1 | #include <sys/types.h> | ||
2 | #include <sys/stat.h> | ||
3 | #include <fcntl.h> | ||
4 | #include <unistd.h> | ||
5 | #include "crypto_uint64.h" | ||
6 | #include "uint64_pack.h" | ||
7 | #include "uint64_unpack.h" | ||
8 | #include "savesync.h" | ||
9 | #include "open.h" | ||
10 | #include "load.h" | ||
11 | #include "randombytes.h" | ||
12 | #include "safenonce.h" | ||
13 | |||
14 | #include "crypto_block.h" | ||
15 | #if crypto_block_BYTES != 16 | ||
16 | error! | ||
17 | #endif | ||
18 | #if crypto_block_KEYBYTES != 32 | ||
19 | error! | ||
20 | #endif | ||
21 | |||
22 | /* | ||
23 | Output: 128-bit nonce y[0],...,y[15]. | ||
24 | Reads and writes existing 8-byte file ".expertsonly/noncecounter", | ||
25 | locked via existing 1-byte file ".expertsonly/lock". | ||
26 | Also reads existing 32-byte file ".expertsonly/noncekey". | ||
27 | Not thread-safe. | ||
28 | |||
29 | Invariants: | ||
30 | This process is free to use counters that are >=counterlow and <counterhigh. | ||
31 | The 8-byte file contains a counter that is safe to use and >=counterhigh. | ||
32 | |||
33 | XXX: should rewrite file in background, rather than briefly pausing | ||
34 | */ | ||
35 | |||
36 | static crypto_uint64 counterlow = 0; | ||
37 | static crypto_uint64 counterhigh = 0; | ||
38 | |||
39 | static unsigned char flagkeyloaded = 0; | ||
40 | static unsigned char noncekey[32]; | ||
41 | static unsigned char data[16]; | ||
42 | |||
43 | int safenonce(unsigned char *y,int flaglongterm) | ||
44 | { | ||
45 | if (!flagkeyloaded) { | ||
46 | int fdlock; | ||
47 | fdlock = open_lock(".expertsonly/lock"); | ||
48 | if (fdlock == -1) return -1; | ||
49 | if (load(".expertsonly/noncekey",noncekey,sizeof noncekey) == -1) { close(fdlock); return -1; } | ||
50 | close(fdlock); | ||
51 | flagkeyloaded = 1; | ||
52 | } | ||
53 | |||
54 | if (counterlow >= counterhigh) { | ||
55 | int fdlock; | ||
56 | fdlock = open_lock(".expertsonly/lock"); | ||
57 | if (fdlock == -1) return -1; | ||
58 | if (load(".expertsonly/noncecounter",data,8) == -1) { close(fdlock); return -1; } | ||
59 | counterlow = uint64_unpack(data); | ||
60 | if (flaglongterm) | ||
61 | counterhigh = counterlow + 1048576; | ||
62 | else | ||
63 | counterhigh = counterlow + 1; | ||
64 | uint64_pack(data,counterhigh); | ||
65 | if (savesync(".expertsonly/noncecounter",data,8) == -1) { close(fdlock); return -1; } | ||
66 | close(fdlock); | ||
67 | } | ||
68 | |||
69 | randombytes(data + 8,8); | ||
70 | uint64_pack(data,counterlow++); | ||
71 | crypto_block(y,data,noncekey); | ||
72 | |||
73 | return 0; | ||
74 | } | ||