]> git.ipfire.org Git - thirdparty/strongswan.git/blame - scripts/id2sql.c
Version bump to 6.0.2dr3
[thirdparty/strongswan.git] / scripts / id2sql.c
CommitLineData
f3af4969
TB
1/*
2 * Copyright (C) 2008 Martin Willi
19ef2aec
TB
3 *
4 * Copyright (C) secunet Security Networks AG
f3af4969
TB
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 */
8ec032fc
MW
16
17#include <stdio.h>
b3e7b79c
TB
18
19#include <library.h>
af1feed9 20#include <utils/identification.h>
8ec032fc
MW
21
22/**
23 * convert an identity to type and encoding
24 */
25int main(int argc, char *argv[])
26{
27 identification_t *id;
28 chunk_t enc;
29 int i;
7daf5226 30
b3e7b79c
TB
31 library_init(NULL, "id2sql");
32 atexit(library_deinit);
33
8ec032fc
MW
34 if (argc < 2)
35 {
36 return -1;
37 }
38
39 id = identification_create_from_string(argv[1]);
40 if (!id)
41 {
42 return -2;
43 }
44 printf("type\tencoding\n");
45 printf("%d,\t", id->get_type(id));
46 enc = id->get_encoding(id);
47
48 printf("X'");
49 for (i = 0; i < enc.len; i++)
50 {
51 printf("%02x", (unsigned int)enc.ptr[i]);
7daf5226 52 }
8ec032fc 53 printf("'\n");
b3e7b79c 54 id->destroy(id);
8ec032fc
MW
55 return 0;
56}
57