| OLD | NEW |
| 1 /* crypto/store/str_locl.h -*- mode:C; c-file-style: "eay" -*- */ | 1 /* crypto/store/str_locl.h -*- mode:C; c-file-style: "eay" -*- */ |
| 2 /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL | 2 /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL |
| 3 * project 2003. | 3 * project 2003. |
| 4 */ | 4 */ |
| 5 /* ==================================================================== | 5 /* ==================================================================== |
| 6 * Copyright (c) 2003 The OpenSSL Project. All rights reserved. | 6 * Copyright (c) 2003 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 #ifndef HEADER_STORE_LOCL_H | 59 #ifndef HEADER_STORE_LOCL_H |
| 60 #define HEADER_STORE_LOCL_H | 60 #define HEADER_STORE_LOCL_H |
| 61 | 61 |
| 62 #include <openssl/crypto.h> | 62 #include <openssl/crypto.h> |
| 63 #include <openssl/store.h> | 63 #include "store.h" |
| 64 | 64 |
| 65 #ifdef __cplusplus | 65 #ifdef __cplusplus |
| 66 extern "C" { | 66 extern "C" { |
| 67 #endif | 67 #endif |
| 68 | 68 |
| 69 struct store_method_st | 69 struct store_method_st |
| 70 { | 70 { |
| 71 char *name; | 71 char *name; |
| 72 | 72 |
| 73 /* All the functions return a positive integer or non-NULL for success | 73 /* All the functions return a positive integer or non-NULL for success |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 ENGINE *engine; | 115 ENGINE *engine; |
| 116 | 116 |
| 117 CRYPTO_EX_DATA ex_data; | 117 CRYPTO_EX_DATA ex_data; |
| 118 int references; | 118 int references; |
| 119 }; | 119 }; |
| 120 #ifdef __cplusplus | 120 #ifdef __cplusplus |
| 121 } | 121 } |
| 122 #endif | 122 #endif |
| 123 | 123 |
| 124 #endif | 124 #endif |
| OLD | NEW |