diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-02-27 22:05:49 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-02-27 22:05:49 +0000 |
commit | e6b1066edcfb8f5e23788b21ed4fa452034f9233 (patch) | |
tree | 75b469e4153eef344e91fe316b5c77a723b5743c /src | |
parent | 2ddcc33e16c3aafe3ecccc4171ba38c0982bd318 (diff) | |
download | strongswan-e6b1066edcfb8f5e23788b21ed4fa452034f9233.tar.bz2 strongswan-e6b1066edcfb8f5e23788b21ed4fa452034f9233.tar.xz |
cosmetics
Diffstat (limited to 'src')
-rw-r--r-- | src/libstrongswan/asn1/asn1.c | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/src/libstrongswan/asn1/asn1.c b/src/libstrongswan/asn1/asn1.c index 9f48a5a29..91a6621d4 100644 --- a/src/libstrongswan/asn1/asn1.c +++ b/src/libstrongswan/asn1/asn1.c @@ -35,32 +35,37 @@ const chunk_t ASN1_INTEGER_2 = chunk_from_buf(ASN1_INTEGER_2_str); static u_char ASN1_md5_id_str[] = { 0x30, 0x0C, - 0x06, 0x08, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, - 0x05, 0x00 + 0x06, 0x08, + 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05, + 0x05, 0x00 }; static u_char ASN1_sha1_id_str[] = { 0x30, 0x09, - 0x06, 0x05, 0x2B, 0x0E,0x03, 0x02, 0x1A, - 0x05, 0x00 + 0x06, 0x05, + 0x2B, 0x0E,0x03, 0x02, 0x1A, + 0x05, 0x00 }; static u_char ASN1_md5WithRSA_id_str[] = { 0x30, 0x0D, - 0x06, 0x09, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x01, 0x01, 0x04, - 0x05, 0x00 + 0x06, 0x09, + 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x01, 0x01, 0x04, + 0x05, 0x00 }; static u_char ASN1_sha1WithRSA_id_str[] = { 0x30, 0x0D, - 0x06, 0x09, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x01, 0x01, 0x05, - 0x05, 0x00 + 0x06, 0x09, + 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x01, 0x01, 0x05, + 0x05, 0x00 }; static u_char ASN1_rsaEncryption_id_str[] = { 0x30, 0x0D, - 0x06, 0x09, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x01, 0x01, 0x01, - 0x05, 0x00 + 0x06, 0x09, + 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x01, 0x01, 0x01, + 0x05, 0x00 }; const chunk_t ASN1_md5_id = chunk_from_buf(ASN1_md5_id_str); |