Rename 'buffer' to 'data' in OSSL_PARAM
[oweals/openssl.git] / include / openssl / core.h
index 15e88434cd06d1119f26303974c365c7304b1457..bbc9fb4d9cfa14ef3ce4179b801cf691583d56d4 100644 (file)
@@ -75,8 +75,8 @@ struct ossl_algorithm_st {
 struct ossl_param_st {
     const char *key;             /* the name of the parameter */
     unsigned int data_type;      /* declare what kind of content is in buffer */
-    void *buffer;                /* value being passed in or out */
-    size_t buffer_size;          /* buffer size */
+    void *data;                  /* value being passed in or out */
+    size_t data_size;            /* data size */
     size_t *return_size;         /* OPTIONAL: address to content size */
 };