| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | =pod | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NAME | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-08 19:13:01 +08:00
										 |  |  | EVP_PKEY_sign_init, EVP_PKEY_sign - sign using a public key algorithm | 
					
						
							| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 SYNOPSIS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  #include <openssl/evp.h> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  int EVP_PKEY_sign_init(EVP_PKEY_CTX *ctx); | 
					
						
							|  |  |  |  int EVP_PKEY_sign(EVP_PKEY_CTX *ctx, | 
					
						
							| 
									
										
										
										
											2017-01-21 02:58:49 +08:00
										 |  |  |                    unsigned char *sig, size_t *siglen, | 
					
						
							|  |  |  |                    const unsigned char *tbs, size_t tbslen); | 
					
						
							| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 DESCRIPTION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The EVP_PKEY_sign_init() function initializes a public key algorithm | 
					
						
							|  |  |  | context using key B<pkey> for a signing operation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The EVP_PKEY_sign() function performs a public key signing operation | 
					
						
							|  |  |  | using B<ctx>. The data to be signed is specified using the B<tbs> and | 
					
						
							|  |  |  | B<tbslen> parameters. If B<sig> is B<NULL> then the maximum size of the output | 
					
						
							|  |  |  | buffer is written to the B<siglen> parameter. If B<sig> is not B<NULL> then | 
					
						
							|  |  |  | before the call the B<siglen> parameter should contain the length of the | 
					
						
							|  |  |  | B<sig> buffer, if the call is successful the signature is written to | 
					
						
							|  |  |  | B<sig> and the amount of data written to B<siglen>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NOTES | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-22 19:16:55 +08:00
										 |  |  | EVP_PKEY_sign() does not hash the data to be signed, and therefore is | 
					
						
							|  |  |  | normally used to sign digests. For signing arbitrary messages, see the | 
					
						
							| 
									
										
										
										
											2015-08-18 03:21:33 +08:00
										 |  |  | L<EVP_DigestSignInit(3)> and | 
					
						
							|  |  |  | L<EVP_SignInit(3)> signing interfaces instead. | 
					
						
							| 
									
										
										
										
											2014-08-22 19:16:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | After the call to EVP_PKEY_sign_init() algorithm specific control | 
					
						
							|  |  |  | operations can be performed to set any appropriate parameters for the | 
					
						
							| 
									
										
										
										
											2015-08-18 03:21:33 +08:00
										 |  |  | operation (see L<EVP_PKEY_CTX_ctrl(3)>). | 
					
						
							| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | The function EVP_PKEY_sign() can be called more than once on the same | 
					
						
							|  |  |  | context if several operations are performed using the same parameters. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 RETURN VALUES | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | EVP_PKEY_sign_init() and EVP_PKEY_sign() return 1 for success and 0 | 
					
						
							|  |  |  | or a negative value for failure. In particular a return value of -2 | 
					
						
							|  |  |  | indicates the operation is not supported by the public key algorithm. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 EXAMPLE | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  | Sign data using RSA with PKCS#1 padding and SHA256 digest: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  #include <openssl/evp.h> | 
					
						
							|  |  |  |  #include <openssl/rsa.h> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  EVP_PKEY_CTX *ctx; | 
					
						
							| 
									
										
										
										
											2014-08-22 19:16:55 +08:00
										 |  |  |  /* md is a SHA-256 digest in this example. */ | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  |  unsigned char *md, *sig; | 
					
						
							| 
									
										
										
										
											2014-08-22 19:16:55 +08:00
										 |  |  |  size_t mdlen = 32, siglen; | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  |  EVP_PKEY *signing_key; | 
					
						
							| 
									
										
										
										
											2014-08-22 19:16:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  /* | 
					
						
							|  |  |  |   * NB: assumes signing_key and md are set up before the next | 
					
						
							|  |  |  |   * step. signing_key must be an RSA private key and md must | 
					
						
							|  |  |  |   * point to the SHA-256 digest to be signed. | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  |   */ | 
					
						
							| 
									
										
										
										
											2014-08-22 19:16:55 +08:00
										 |  |  |  ctx = EVP_PKEY_CTX_new(signing_key, NULL /* no engine */); | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  |  if (!ctx) | 
					
						
							| 
									
										
										
										
											2016-11-19 07:10:05 +08:00
										 |  |  |      /* Error occurred */ | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  |  if (EVP_PKEY_sign_init(ctx) <= 0) | 
					
						
							| 
									
										
										
										
											2016-11-19 07:10:05 +08:00
										 |  |  |      /* Error */ | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  |  if (EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_PADDING) <= 0) | 
					
						
							| 
									
										
										
										
											2016-11-19 07:10:05 +08:00
										 |  |  |      /* Error */ | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  |  if (EVP_PKEY_CTX_set_signature_md(ctx, EVP_sha256()) <= 0) | 
					
						
							| 
									
										
										
										
											2016-11-19 07:10:05 +08:00
										 |  |  |      /* Error */ | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  /* Determine buffer length */ | 
					
						
							|  |  |  |  if (EVP_PKEY_sign(ctx, NULL, &siglen, md, mdlen) <= 0) | 
					
						
							| 
									
										
										
										
											2016-11-19 07:10:05 +08:00
										 |  |  |      /* Error */ | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  sig = OPENSSL_malloc(siglen); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  if (!sig) | 
					
						
							| 
									
										
										
										
											2016-11-19 07:10:05 +08:00
										 |  |  |      /* malloc failure */ | 
					
						
							| 
									
										
										
										
											2016-05-20 20:11:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  |  if (EVP_PKEY_sign(ctx, sig, &siglen, md, mdlen) <= 0) | 
					
						
							| 
									
										
										
										
											2016-11-19 07:10:05 +08:00
										 |  |  |      /* Error */ | 
					
						
							| 
									
										
										
										
											2006-07-08 20:46:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  /* Signature is siglen bytes written to buffer sig */ | 
					
						
							| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 SEE ALSO | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-18 03:21:33 +08:00
										 |  |  | L<EVP_PKEY_CTX_new(3)>, | 
					
						
							|  |  |  | L<EVP_PKEY_CTX_ctrl(3)>, | 
					
						
							|  |  |  | L<EVP_PKEY_encrypt(3)>, | 
					
						
							|  |  |  | L<EVP_PKEY_decrypt(3)>, | 
					
						
							|  |  |  | L<EVP_PKEY_verify(3)>, | 
					
						
							|  |  |  | L<EVP_PKEY_verify_recover(3)>, | 
					
						
							| 
									
										
										
										
											2016-05-20 20:11:46 +08:00
										 |  |  | L<EVP_PKEY_derive(3)> | 
					
						
							| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 HISTORY | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-01 07:43:01 +08:00
										 |  |  | These functions were first added to OpenSSL 1.0.0. | 
					
						
							| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | =head1 COPYRIGHT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Licensed under the OpenSSL license (the "License").  You may not use | 
					
						
							|  |  |  | this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  | in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  | L<https://www.openssl.org/source/license.html>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =cut |