]> granicus.if.org Git - openssl/commitdiff
Rename some daysnc functions for consistency
authorMatt Caswell <matt@openssl.org>
Fri, 9 Oct 2015 15:45:25 +0000 (16:45 +0100)
committerMatt Caswell <matt@openssl.org>
Fri, 20 Nov 2015 23:35:19 +0000 (23:35 +0000)
For some reason the dasync sha1 functions did not start with the
dasync prefix like all of the other functions do. Changed for
consistency.

Reviewed-by: Rich Salz <rsalz@openssl.org>
engines/e_dasync.c

index 9e0ed1b492c95b03fea79911dd8dd3b3f04ec150..76171b181cf6762df255673f02a68ec5aa94f866 100644 (file)
@@ -85,19 +85,19 @@ static int dasync_digest_nids[] = { NID_sha1, 0 };
 static void dummy_pause_job(void);
 
 /* SHA1 */
-static int digest_sha1_init(EVP_MD_CTX *ctx);
-static int digest_sha1_update(EVP_MD_CTX *ctx, const void *data,
+static int dasync_sha1_init(EVP_MD_CTX *ctx);
+static int dasync_sha1_update(EVP_MD_CTX *ctx, const void *data,
                              unsigned long count);
-static int digest_sha1_final(EVP_MD_CTX *ctx, unsigned char *md);
+static int dasync_sha1_final(EVP_MD_CTX *ctx, unsigned char *md);
 
-static const EVP_MD digest_sha1 = {
+static const EVP_MD dasync_sha1 = {
     NID_sha1,
     NID_sha1WithRSAEncryption,
     SHA_DIGEST_LENGTH,
     EVP_MD_FLAG_PKEY_METHOD_SIGNATURE | EVP_MD_FLAG_DIGALGID_ABSENT,
-    digest_sha1_init,
-    digest_sha1_update,
-    digest_sha1_final,
+    dasync_sha1_init,
+    dasync_sha1_update,
+    dasync_sha1_final,
     NULL,
     NULL,
     EVP_PKEY_NULL_method,
@@ -225,7 +225,7 @@ static int dasync_digests(ENGINE *e, const EVP_MD **digest,
     /* We are being asked for a specific digest */
     switch (nid) {
     case NID_sha1:
-        *digest = &digest_sha1;
+        *digest = &dasync_sha1;
         break;
     default:
         ok = 0;
@@ -261,14 +261,14 @@ static void dummy_pause_job(void) {
  */
 #undef data
 #define data(ctx) ((SHA_CTX *)(ctx)->md_data)
-static int digest_sha1_init(EVP_MD_CTX *ctx)
+static int dasync_sha1_init(EVP_MD_CTX *ctx)
 {
     dummy_pause_job();
 
     return SHA1_Init(data(ctx));
 }
 
-static int digest_sha1_update(EVP_MD_CTX *ctx, const void *data,
+static int dasync_sha1_update(EVP_MD_CTX *ctx, const void *data,
                              unsigned long count)
 {
     dummy_pause_job();
@@ -276,7 +276,7 @@ static int digest_sha1_update(EVP_MD_CTX *ctx, const void *data,
     return SHA1_Update(data(ctx), data, (size_t)count);
 }
 
-static int digest_sha1_final(EVP_MD_CTX *ctx, unsigned char *md)
+static int dasync_sha1_final(EVP_MD_CTX *ctx, unsigned char *md)
 {
     dummy_pause_job();