summaryrefslogtreecommitdiff
path: root/crypto/evp/evp.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-08-06 11:57:08 +0000
committerBodo Möller <bodo@openssl.org>2001-08-06 11:57:08 +0000
commite51d1321fc91f2008022827009baea2dab938a2e (patch)
treea98f208592f18c8a27f0b5e2319e6051edc28c60 /crypto/evp/evp.h
parentb9fdb3eb99555d6e362035cebce701d6a5aa2a89 (diff)
downloadopenssl-new-e51d1321fc91f2008022827009baea2dab938a2e.tar.gz
More typedef'd struct names as search targets
Diffstat (limited to 'crypto/evp/evp.h')
-rw-r--r--crypto/evp/evp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index efcc17c608..8feb6c7a1d 100644
--- a/crypto/evp/evp.h
+++ b/crypto/evp/evp.h
@@ -277,7 +277,7 @@ struct evp_cipher_st
int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */
int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */
void *app_data; /* Application data */
- };
+ } /* EVP_CIPHER */;
/* Values for cipher flags */
@@ -335,7 +335,7 @@ struct evp_cipher_ctx_st
int final_used;
int block_mask;
unsigned char final[EVP_MAX_BLOCK_LENGTH];/* possible final block */
- };
+ } /* EVP_CIPHER_CTX */;
typedef struct evp_Encode_Ctx_st
{