| OLD | NEW |
| 1 /* pem_x509.c */ | 1 /* pem_x509.c */ |
| 2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
| 3 * project 2001. | 3 * project 2001. |
| 4 */ | 4 */ |
| 5 /* ==================================================================== | 5 /* ==================================================================== |
| 6 * Copyright (c) 2001 The OpenSSL Project. All rights reserved. | 6 * Copyright (c) 2001 The OpenSSL Project. All rights reserved. |
| 7 * | 7 * |
| 8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 10 * are met: | 10 * are met: |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 * OF THE POSSIBILITY OF SUCH DAMAGE. | 50 * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 51 * ==================================================================== | 51 * ==================================================================== |
| 52 * | 52 * |
| 53 * This product includes cryptographic software written by Eric Young | 53 * This product includes cryptographic software written by Eric Young |
| 54 * (eay@cryptsoft.com). This product includes software written by Tim | 54 * (eay@cryptsoft.com). This product includes software written by Tim |
| 55 * Hudson (tjh@cryptsoft.com). | 55 * Hudson (tjh@cryptsoft.com). |
| 56 * | 56 * |
| 57 */ | 57 */ |
| 58 | 58 |
| 59 #include <stdio.h> | 59 #include <stdio.h> |
| 60 #undef SSLEAY_MACROS | |
| 61 #include "cryptlib.h" | 60 #include "cryptlib.h" |
| 62 #include <openssl/bio.h> | 61 #include <openssl/bio.h> |
| 63 #include <openssl/evp.h> | 62 #include <openssl/evp.h> |
| 64 #include <openssl/x509.h> | 63 #include <openssl/x509.h> |
| 65 #include <openssl/pkcs7.h> | 64 #include <openssl/pkcs7.h> |
| 66 #include <openssl/pem.h> | 65 #include <openssl/pem.h> |
| 67 | 66 |
| 68 IMPLEMENT_PEM_rw(X509, X509, PEM_STRING_X509, X509) | 67 IMPLEMENT_PEM_rw(X509, X509, PEM_STRING_X509, X509) |
| 69 | 68 |
| OLD | NEW |