blob: da7c800adfab7fcaf6a1f818478d328be0511296 [file] [log] [blame]
Harald Weltee076ac02011-12-07 00:10:18 +01001
2#include <stdlib.h>
3#include <stdio.h>
4#include <errno.h>
5#include <string.h>
6
7#include <osmocom/crypt/auth.h>
8#include <osmocom/core/utils.h>
9
10static void dump_auth_vec(struct osmo_auth_vector *vec)
11{
12 printf("RAND:\t%s\n", osmo_hexdump(vec->rand, sizeof(vec->rand)));
13
14 if (vec->auth_types & OSMO_AUTH_TYPE_UMTS) {
15 printf("AUTN:\t%s\n", osmo_hexdump(vec->autn, sizeof(vec->autn)));
16 printf("IK:\t%s\n", osmo_hexdump(vec->ik, sizeof(vec->ik)));
17 printf("CK:\t%s\n", osmo_hexdump(vec->ck, sizeof(vec->ck)));
18 printf("RES:\t%s\n", osmo_hexdump(vec->res, vec->res_len));
19 }
20
21 if (vec->auth_types & OSMO_AUTH_TYPE_GSM) {
22 printf("SRES:\t%s\n", osmo_hexdump(vec->sres, sizeof(vec->sres)));
23 printf("Kc:\t%s\n", osmo_hexdump(vec->kc, sizeof(vec->kc)));
24 }
25}
26
27static struct osmo_sub_auth_data test_aud = {
28 .type = OSMO_AUTH_TYPE_UMTS,
29 .algo = OSMO_AUTH_ALG_MILENAGE,
Harald Welteaae23622011-12-07 11:35:02 +010030 .u.umts = {
Harald Weltee076ac02011-12-07 00:10:18 +010031 .opc = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
32 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
33 .k = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
34 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f },
35 .amf = { 0x00, 0x00 },
Harald Welte57143a42011-12-07 03:12:44 +010036 .sqn = 0x22,
Harald Weltee076ac02011-12-07 00:10:18 +010037 },
38};
39
40int main(int argc, char **argv)
41{
42 struct osmo_auth_vector _vec;
43 struct osmo_auth_vector *vec = &_vec;
44 uint8_t _rand[16];
45 int rc;
46
47#if 0
48 srand(time(NULL));
49 *(uint32_t *)&_rand[0] = rand();
50 *(uint32_t *)(&_rand[4]) = rand();
51 *(uint32_t *)(&_rand[8]) = rand();
52 *(uint32_t *)(&_rand[12]) = rand();
53#else
54 memset(_rand, 0, sizeof(_rand));
55#endif
56 memset(vec, 0, sizeof(*vec));
57
58 rc = osmo_auth_gen_vec(vec, &test_aud, _rand);
59 if (rc < 0) {
60 fprintf(stderr, "error generating auth vector\n");
61 exit(1);
62 }
63
64 dump_auth_vec(vec);
65
66 const uint8_t auts[14] = { 0x87, 0x11, 0xa0, 0xec, 0x9e, 0x16, 0x37, 0xdf,
67 0x17, 0xf8, 0x0b, 0x38, 0x4e, 0xe4 };
68
69 rc = osmo_auth_gen_vec_auts(vec, &test_aud, auts, _rand, _rand);
70 if (rc < 0) {
71 printf("AUTS failed\n");
72 } else {
Harald Welteaae23622011-12-07 11:35:02 +010073 printf("AUTS success: SEQ.MS = %lu\n", test_aud.u.umts.sqn);
Harald Weltee076ac02011-12-07 00:10:18 +010074 }
75
76 exit(0);
77
78}