| 
									
										
										
										
											2014-04-27 04:44:26 +08:00
										 |  |  | =pod | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NAME | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-27 04:56:36 +08:00
										 |  |  | PKCS5_PBKDF2_HMAC, PKCS5_PBKDF2_HMAC_SHA1 - password based derivation routines with salt and iteration count | 
					
						
							| 
									
										
										
										
											2014-04-27 04:44:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 SYNOPSIS | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  #include <openssl/evp.h> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  int PKCS5_PBKDF2_HMAC(const char *pass, int passlen, | 
					
						
							|  |  |  |                        const unsigned char *salt, int saltlen, int iter, | 
					
						
							|  |  |  |                        const EVP_MD *digest, | 
					
						
							|  |  |  |                        int keylen, unsigned char *out); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 02:58:49 +08:00
										 |  |  |  int PKCS5_PBKDF2_HMAC_SHA1(const char *pass, int passlen, | 
					
						
							|  |  |  |                             const unsigned char *salt, int saltlen, int iter, | 
					
						
							|  |  |  |                             int keylen, unsigned char *out); | 
					
						
							| 
									
										
										
										
											2014-04-27 04:56:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-27 04:44:26 +08:00
										 |  |  | =head1 DESCRIPTION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PKCS5_PBKDF2_HMAC() derives a key from a password using a salt and iteration count | 
					
						
							|  |  |  | as specified in RFC 2898. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | B<pass> is the password used in the derivation of length B<passlen>. B<pass> | 
					
						
							|  |  |  | is an optional parameter and can be NULL. If B<passlen> is -1, then the | 
					
						
							|  |  |  | function will calculate the length of B<pass> using strlen(). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | B<salt> is the salt used in the derivation of length B<saltlen>. If the | 
					
						
							|  |  |  | B<salt> is NULL, then B<saltlen> must be 0. The function will not | 
					
						
							| 
									
										
										
										
											2014-04-27 04:56:36 +08:00
										 |  |  | attempt to calculate the length of the B<salt> because it is not assumed to | 
					
						
							| 
									
										
										
										
											2014-04-27 04:44:26 +08:00
										 |  |  | be NULL terminated. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-20 20:11:46 +08:00
										 |  |  | B<iter> is the iteration count and its value should be greater than or | 
					
						
							| 
									
										
										
										
											2014-04-27 04:44:26 +08:00
										 |  |  | equal to 1. RFC 2898 suggests an iteration count of at least 1000. Any | 
					
						
							|  |  |  | B<iter> less than 1 is treated as a single iteration. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 15:56:36 +08:00
										 |  |  | B<digest> is the message digest function used in the derivation. | 
					
						
							|  |  |  | PKCS5_PBKDF2_HMAC_SHA1() calls PKCS5_PBKDF2_HMAC() with EVP_sha1(). | 
					
						
							| 
									
										
										
										
											2014-04-27 04:44:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | The derived key will be written to B<out>. The size of the B<out> buffer | 
					
						
							|  |  |  | is specified via B<keylen>. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | =head1 NOTES | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | A typical application of this function is to derive keying material for an | 
					
						
							|  |  |  | encryption algorithm from a password in the B<pass>, a salt in B<salt>, | 
					
						
							|  |  |  | and an iteration count. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Increasing the B<iter> parameter slows down the algorithm which makes it | 
					
						
							| 
									
										
										
										
											2015-04-14 02:05:13 +08:00
										 |  |  | harder for an attacker to perform a brute force attack using a large number | 
					
						
							| 
									
										
										
										
											2014-04-27 04:44:26 +08:00
										 |  |  | of candidate passwords. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-13 17:35:14 +08:00
										 |  |  | These functions make no assumption regarding the given password. | 
					
						
							|  |  |  | It will simply be treated as a byte sequence. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-27 04:44:26 +08:00
										 |  |  | =head1 RETURN VALUES | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-27 04:56:36 +08:00
										 |  |  | PKCS5_PBKDF2_HMAC() and PBKCS5_PBKDF2_HMAC_SHA1() return 1 on success or 0 on error. | 
					
						
							| 
									
										
										
										
											2014-04-27 04:44:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | =head1 SEE ALSO | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-11 16:33:09 +08:00
										 |  |  | L<evp(7)>, L<RAND_bytes(3)>, | 
					
						
							| 
									
										
										
										
											2018-05-13 17:35:14 +08:00
										 |  |  | L<EVP_BytesToKey(3)>, | 
					
						
							|  |  |  | L<passphrase-encoding(7)> | 
					
						
							| 
									
										
										
										
											2014-04-27 04:44:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-18 23:44:05 +08:00
										 |  |  | =head1 COPYRIGHT | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 20:03:23 +08:00
										 |  |  | Copyright 2014-2021 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 |