diff options
author | Martin Willi <martin@strongswan.org> | 2008-04-07 06:06:42 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2008-04-07 06:06:42 +0000 |
commit | 8ec032fc629ff5284de738f4961d8b41ba410f7d (patch) | |
tree | a3b1de9d104e322194056fb576b7310f05160764 /scripts/id2sql.c | |
parent | 84fc1abf7a0ef13a615d2397d026db591aa41936 (diff) | |
download | strongswan-8ec032fc629ff5284de738f4961d8b41ba410f7d.tar.bz2 strongswan-8ec032fc629ff5284de738f4961d8b41ba410f7d.tar.xz |
added helper scripts to create SQL scripts
Diffstat (limited to 'scripts/id2sql.c')
-rw-r--r-- | scripts/id2sql.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/scripts/id2sql.c b/scripts/id2sql.c new file mode 100644 index 000000000..3990e88da --- /dev/null +++ b/scripts/id2sql.c @@ -0,0 +1,36 @@ + +#include <stdio.h> +#include <library.h> + +/** + * convert an identity to type and encoding + */ +int main(int argc, char *argv[]) +{ + identification_t *id; + chunk_t enc; + int i; + + if (argc < 2) + { + return -1; + } + + id = identification_create_from_string(argv[1]); + if (!id) + { + return -2; + } + printf("type\tencoding\n"); + printf("%d,\t", id->get_type(id)); + enc = id->get_encoding(id); + + printf("X'"); + for (i = 0; i < enc.len; i++) + { + printf("%02x", (unsigned int)enc.ptr[i]); + } + printf("'\n"); + return 0; +} + |