diff options
author | Martin Willi <martin@strongswan.org> | 2006-03-30 07:22:01 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-03-30 07:22:01 +0000 |
commit | efadbf79e9c864578bfd1277d824e69b2989aac5 (patch) | |
tree | cf5cde05d140a07f2ffe21c8e61a47610199145b /Source/charon/asn1/asn1.c | |
parent | 9c781c152ad66a73139447e40a2081c38080c651 (diff) | |
download | strongswan-efadbf79e9c864578bfd1277d824e69b2989aac5.tar.bz2 strongswan-efadbf79e9c864578bfd1277d824e69b2989aac5.tar.xz |
- rewrote a lot of RSA stuff
- done major work for ASN1/decoder
- allow loading of ASN1 der encoded private keys, public keys and certificates
- extracting public key from certificates
- passing certificates from stroke to charon
=> basic authentication with RSA certificates works!
Diffstat (limited to 'Source/charon/asn1/asn1.c')
-rw-r--r-- | Source/charon/asn1/asn1.c | 34 |
1 files changed, 24 insertions, 10 deletions
diff --git a/Source/charon/asn1/asn1.c b/Source/charon/asn1/asn1.c index cbd030bb5..01952386c 100644 --- a/Source/charon/asn1/asn1.c +++ b/Source/charon/asn1/asn1.c @@ -1,21 +1,33 @@ +/** + * @file asn1.c + * + * @brief String mappings for asn1.h + * + */ - - - - +/* + * Copyright (C) 2006 Martin Willi + * Hochschule fuer Technik Rapperswil + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + */ #include "asn1.h" - - - - mapping_t asn1_type_m[] = { {ASN1_END, "ASN1_END"}, {ASN1_BOOLEAN, "ASN1_BOOLEAN"}, {ASN1_INTEGER, "ASN1_INTEGER"}, - {ASN1_BIT_STRING, "ASN1_BIT_STRING"}, - {ASN1_OCTET_STRING, "ASN1_OCTET_STRING"}, + {ASN1_BITSTRING, "ASN1_BITSTRING"}, + {ASN1_OCTETSTRING, "ASN1_OCTETSTRING"}, {ASN1_NULL, "ASN1_NULL"}, {ASN1_OID, "ASN1_OID"}, {ASN1_ENUMERATED, "ASN1_ENUMERATED"}, @@ -43,6 +55,7 @@ mapping_t asn1_type_m[] = { {ASN1_TAG_E_5, "ASN1_TAG_E_5"}, {ASN1_TAG_E_6, "ASN1_TAG_E_6"}, {ASN1_TAG_E_7, "ASN1_TAG_E_7"}, + {ASN1_TAG_I_0, "ASN1_TAG_I_0"}, {ASN1_TAG_I_1, "ASN1_TAG_I_1"}, {ASN1_TAG_I_2, "ASN1_TAG_I_2"}, {ASN1_TAG_I_3, "ASN1_TAG_I_3"}, @@ -50,6 +63,7 @@ mapping_t asn1_type_m[] = { {ASN1_TAG_I_5, "ASN1_TAG_I_5"}, {ASN1_TAG_I_6, "ASN1_TAG_I_6"}, {ASN1_TAG_I_7, "ASN1_TAG_I_7"}, + {ASN1_CHOICE, "ASN1_CHOICE"}, }; mapping_t asn1_flag_m[] = { |