Git init
[framework/uifw/xorg/lib/libxdmcp.git] / Key.c
1 /*
2 Copyright 1989, 1998  The Open Group
3
4 Permission to use, copy, modify, distribute, and sell this software and its
5 documentation for any purpose is hereby granted without fee, provided that
6 the above copyright notice appear in all copies and that both that
7 copyright notice and this permission notice appear in supporting
8 documentation.
9
10 The above copyright notice and this permission notice shall be included in
11 all copies or substantial portions of the Software.
12
13 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
16 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
17 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19
20 Except as contained in this notice, the name of The Open Group shall not be
21 used in advertising or otherwise to promote the sale, use or other dealings
22 in this Software without prior written authorization from The Open Group.
23  *
24  * Author:  Keith Packard, MIT X Consortium
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #include <config.h>
29 #endif
30 #include <X11/Xos.h>
31 #include <X11/X.h>
32 #include <X11/Xmd.h>
33 #include <X11/Xdmcp.h>
34
35 static void
36 getbits (long data, unsigned char *dst)
37 {
38     dst[0] = (data      ) & 0xff;
39     dst[1] = (data >>  8) & 0xff;
40     dst[2] = (data >> 16) & 0xff;
41     dst[3] = (data >> 24) & 0xff;
42 }
43
44 #define Time_t time_t
45
46 #include <stdlib.h>
47
48 #if defined(HAVE_LRAND48) && defined(HAVE_SRAND48)
49 #define srandom srand48
50 #define random lrand48
51 #endif
52 #ifdef WIN32
53 #include <process.h>
54 #define srandom srand
55 #define random rand
56 #define getpid(x) _getpid(x)
57 #endif
58
59 void
60 XdmcpGenerateKey (XdmAuthKeyPtr key)
61 {
62     long    lowbits, highbits;
63
64     srandom ((int)getpid() ^ time((Time_t *)0));
65     lowbits = random ();
66     highbits = random ();
67     getbits (lowbits, key->data);
68     getbits (highbits, key->data + 4);
69 }
70
71 int
72 XdmcpCompareKeys (const XdmAuthKeyPtr a, const XdmAuthKeyPtr b)
73 {
74     int i;
75
76     for (i = 0; i < 8; i++)
77         if (a->data[i] != b->data[i])
78             return FALSE;
79     return TRUE;
80 }
81
82 void
83 XdmcpIncrementKey (XdmAuthKeyPtr key)
84 {
85     int i;
86
87     i = 7;
88     while (++key->data[i] == 0)
89         if (--i < 0)
90             break;
91 }
92
93 void
94 XdmcpDecrementKey (XdmAuthKeyPtr key)
95 {
96     int i;
97
98     i = 7;
99     while (key->data[i]-- == 0)
100         if (--i < 0)
101             break;
102 }