| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | =pod | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NAME | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-30 23:59:34 +08:00
										 |  |  | EVP_PKEY_sign_init, EVP_PKEY_sign | 
					
						
							| 
									
										
										
										
											2019-09-03 23:15:21 +08:00
										 |  |  | - 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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-30 23:59:34 +08:00
										 |  |  | EVP_PKEY_sign_init() initializes a public key algorithm context I<ctx> for | 
					
						
							|  |  |  | signing using the algorithm given when the context was created | 
					
						
							|  |  |  | using L<EVP_PKEY_CTX_new(3)> or variants thereof.  The algorithm is used to | 
					
						
							|  |  |  | fetch a B<EVP_SIGNATURE> method implicitly, see L<provider(7)/Implicit fetch> | 
					
						
							| 
									
										
										
										
											2020-06-30 03:13:07 +08:00
										 |  |  | for more information about implicit fetches. | 
					
						
							| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | The EVP_PKEY_sign() function performs a public key signing operation | 
					
						
							| 
									
										
										
										
											2019-10-30 23:59:34 +08:00
										 |  |  | using I<ctx>. The data to be signed is specified using the I<tbs> and | 
					
						
							|  |  |  | I<tbslen> parameters. If I<sig> is NULL then the maximum size of the output | 
					
						
							|  |  |  | buffer is written to the I<siglen> parameter. If I<sig> is not NULL then | 
					
						
							|  |  |  | before the call the I<siglen> parameter should contain the length of the | 
					
						
							|  |  |  | I<sig> buffer, if the call is successful the signature is written to | 
					
						
							|  |  |  | I<sig> and the amount of data written to I<siglen>. | 
					
						
							| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =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. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-16 02:26:08 +08:00
										 |  |  | =head1 EXAMPLES | 
					
						
							| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-09 08:02:36 +08:00
										 |  |  | These functions were added in OpenSSL 1.0.0. | 
					
						
							| 
									
										
										
										
											2006-07-08 18:55:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | =head1 COPYRIGHT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-23 20:55:52 +08:00
										 |  |  | Copyright 2006-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-06 21:04:44 +08:00
										 |  |  | Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | 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 |