[prev in list] [next in list] [prev in thread] [next in thread] 

List:       openssl-cvs
Subject:    [openssl] OpenSSL source code branch master updated. 0f7fa1b1904d0f5e997f0b150321ef6d3492651b
From:       Dr. Stephen Henson <steve () openssl ! org>
Date:       2013-11-14 21:07:24
Message-ID: 20131114210724.EEF721E03AC () openssl ! net
[Download RAW message or body]

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OpenSSL source code".

The branch, master has been updated
       via  0f7fa1b1904d0f5e997f0b150321ef6d3492651b (commit)
      from  2911575c6e790541e495927a60121d7546a66962 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0f7fa1b1904d0f5e997f0b150321ef6d3492651b
Author: Dr. Stephen Henson <steve@openssl.org>
Date:   Thu Nov 14 21:00:40 2013 +0000

    Constify.
    (cherry picked from commit 1abfa78a8ba714f7e47bd674db53dbe303cd1ce7)

-----------------------------------------------------------------------

Summary of changes:
 crypto/evp/evp.h                    |    2 +-
 crypto/evp/m_sigver.c               |    3 ++-
 doc/crypto/EVP_DigestVerifyInit.pod |    2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index 2b130c4..a5aa4c8 100644
--- a/crypto/evp/evp.h
+++ b/crypto/evp/evp.h
@@ -675,7 +675,7 @@ __owur int	EVP_DigestSignFinal(EVP_MD_CTX *ctx,
 __owur int	EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
 			const EVP_MD *type, ENGINE *e, EVP_PKEY *pkey);
 __owur int	EVP_DigestVerifyFinal(EVP_MD_CTX *ctx,
-			unsigned char *sig, size_t siglen);
+			const unsigned char *sig, size_t siglen);
 
 __owur int	EVP_OpenInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *type,
 		const unsigned char *ek, int ekl, const unsigned char *iv,
diff --git a/crypto/evp/m_sigver.c b/crypto/evp/m_sigver.c
index 9f83d3e..bc5e132 100644
--- a/crypto/evp/m_sigver.c
+++ b/crypto/evp/m_sigver.c
@@ -205,7 +205,8 @@ int EVP_DigestSignFinal(EVP_MD_CTX *ctx, unsigned char *sigret, size_t *siglen)
 	return 1;
 	}
 
-int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, unsigned char *sig, size_t siglen)
+int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sig,
+								size_t siglen)
 	{
 	unsigned char md[EVP_MAX_MD_SIZE];
 	int r;
diff --git a/doc/crypto/EVP_DigestVerifyInit.pod b/doc/crypto/EVP_DigestVerifyInit.pod
index f224488..c59866c 100644
--- a/doc/crypto/EVP_DigestVerifyInit.pod
+++ b/doc/crypto/EVP_DigestVerifyInit.pod
@@ -11,7 +11,7 @@ EVP_DigestVerifyInit, EVP_DigestVerifyUpdate, EVP_DigestVerifyFinal - EVP signat
  int EVP_DigestVerifyInit(EVP_MD_CTX *ctx, EVP_PKEY_CTX **pctx,
 			const EVP_MD *type, ENGINE *e, EVP_PKEY *pkey);
  int EVP_DigestVerifyUpdate(EVP_MD_CTX *ctx, const void *d, unsigned int cnt);
- int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, unsigned char *sig, size_t siglen);
+ int EVP_DigestVerifyFinal(EVP_MD_CTX *ctx, const unsigned char *sig, size_t siglen);
 
 =head1 DESCRIPTION
 


hooks/post-receive
-- 
OpenSSL source code
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
CVS Repository Commit List                     openssl-cvs@openssl.org
Automated List Manager                           majordomo@openssl.org
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic