]>
git.ipfire.org Git - thirdparty/strongswan.git/blob - scripts/id2sql.c
c249ce9a2f2e0edb499378b252ecba7de9763c75
2 * Copyright (C) 2008 Martin Willi
4 * Copyright (C) secunet Security Networks AG
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>.
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
20 #include <utils/identification.h>
23 * convert an identity to type and encoding
25 int main(int argc
, char *argv
[])
31 library_init(NULL
, "id2sql");
32 atexit(library_deinit
);
39 id
= identification_create_from_string(argv
[1]);
44 printf("type\tencoding\n");
45 printf("%d,\t", id
->get_type(id
));
46 enc
= id
->get_encoding(id
);
49 for (i
= 0; i
< enc
.len
; i
++)
51 printf("%02x", (unsigned int)enc
.ptr
[i
]);