mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
Added keygen_s2k function. Function which generates keys from passwords.
This commit is contained in:
parent
f1dcb32c9f
commit
93232c7064
2 changed files with 78 additions and 1 deletions
|
@ -14,7 +14,8 @@
|
||||||
+----------------------------------------------------------------------+
|
+----------------------------------------------------------------------+
|
||||||
| Authors: Sascha Schumann <sascha@schumann.cx> |
|
| Authors: Sascha Schumann <sascha@schumann.cx> |
|
||||||
| |
|
| |
|
||||||
| HMAC functionality added by Nikos Mavroyanopoulos <nmav@hellug.gr> |
|
| HMAC and KEYGEN functionality added by |
|
||||||
|
| Nikos Mavroyanopoulos <nmav@hellug.gr> |
|
||||||
+----------------------------------------------------------------------+
|
+----------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -32,6 +33,7 @@
|
||||||
function_entry mhash_functions[] = {
|
function_entry mhash_functions[] = {
|
||||||
PHP_FE(mhash_get_block_size, NULL)
|
PHP_FE(mhash_get_block_size, NULL)
|
||||||
PHP_FE(mhash_get_hash_name, NULL)
|
PHP_FE(mhash_get_hash_name, NULL)
|
||||||
|
PHP_FE(mhash_keygen_s2k, NULL)
|
||||||
PHP_FE(mhash_count, NULL)
|
PHP_FE(mhash_count, NULL)
|
||||||
PHP_FE(mhash, NULL) {0}
|
PHP_FE(mhash, NULL) {0}
|
||||||
,
|
,
|
||||||
|
@ -52,6 +54,7 @@ zend_module_entry mhash_module_entry = {
|
||||||
ZEND_GET_MODULE(mhash)
|
ZEND_GET_MODULE(mhash)
|
||||||
#endif
|
#endif
|
||||||
#define MHASH_FAILED_MSG "mhash initialization failed"
|
#define MHASH_FAILED_MSG "mhash initialization failed"
|
||||||
|
#define MHASH_KEYGEN_FAILED_MSG "mhash key generation failed"
|
||||||
static PHP_MINIT_FUNCTION(mhash)
|
static PHP_MINIT_FUNCTION(mhash)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
@ -192,5 +195,78 @@ PHP_FUNCTION(mhash)
|
||||||
|
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
|
||||||
|
/* {{{ proto string mhash_keygen_s2k(int hash, string input_password, string salt, int bytes)
|
||||||
|
generate a key using hash functions */
|
||||||
|
/* SALTED S2K uses a fixed salt */
|
||||||
|
#define SALT_SIZE 8
|
||||||
|
PHP_FUNCTION(mhash_keygen_s2k)
|
||||||
|
{
|
||||||
|
pval **hash, **input_password, **bytes, **input_salt;
|
||||||
|
unsigned char *key;
|
||||||
|
int password_len, salt_len;
|
||||||
|
int hashid, size=0, val;
|
||||||
|
KEYGEN keystruct;
|
||||||
|
char salt[SALT_SIZE], *ret;
|
||||||
|
char* password, error[128];
|
||||||
|
|
||||||
|
if (ZEND_NUM_ARGS() != 4) {
|
||||||
|
WRONG_PARAM_COUNT;
|
||||||
|
}
|
||||||
|
if (zend_get_parameters_ex(4, &hash, &input_password, &input_salt, &bytes) == FAILURE) {
|
||||||
|
WRONG_PARAM_COUNT;
|
||||||
|
}
|
||||||
|
convert_to_long_ex(hash);
|
||||||
|
convert_to_string_ex(input_password);
|
||||||
|
convert_to_string_ex(input_salt);
|
||||||
|
convert_to_long_ex(bytes);
|
||||||
|
|
||||||
|
password = (*input_password)->value.str.val;
|
||||||
|
password_len = (*input_password)->value.str.len;
|
||||||
|
|
||||||
|
salt_len = (*input_salt)->value.str.len;
|
||||||
|
|
||||||
|
if (salt_len > mhash_get_keygen_salt_size(KEYGEN_S2K_SALTED)) {
|
||||||
|
sprintf( error, "The specified salt [%d] is more bytes than the required by the algorithm [%d]\n", salt_len, mhash_get_keygen_salt_size(KEYGEN_S2K_SALTED));
|
||||||
|
|
||||||
|
php_error(E_WARNING, error);
|
||||||
|
}
|
||||||
|
|
||||||
|
memset( salt, 0, SALT_SIZE);
|
||||||
|
memcpy( salt, (*input_salt)->value.str.val, salt_len);
|
||||||
|
salt_len=SALT_SIZE;
|
||||||
|
|
||||||
|
/* if (salt_len==0) {
|
||||||
|
* php_error(E_WARNING, "Not using salt is really not recommended);
|
||||||
|
* }
|
||||||
|
*/
|
||||||
|
|
||||||
|
hashid = (*hash)->value.lval;
|
||||||
|
size = (*bytes)->value.lval;
|
||||||
|
|
||||||
|
keystruct.hash_algorithm[0]=hashid;
|
||||||
|
keystruct.hash_algorithm[1]=hashid;
|
||||||
|
keystruct.count=0;
|
||||||
|
keystruct.salt = salt;
|
||||||
|
keystruct.salt_size = salt_len;
|
||||||
|
|
||||||
|
ret = malloc(size);
|
||||||
|
if (ret==NULL) {
|
||||||
|
php_error(E_WARNING, MHASH_KEYGEN_FAILED_MSG);
|
||||||
|
RETURN_FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
val = mhash_keygen_ext( KEYGEN_S2K_SALTED, keystruct, ret, size, password, password_len);
|
||||||
|
if ( val >= 0) {
|
||||||
|
RETVAL_STRINGL(ret, size, 1);
|
||||||
|
free(ret);
|
||||||
|
} else {
|
||||||
|
php_error(E_WARNING, MHASH_KEYGEN_FAILED_MSG);
|
||||||
|
free(ret);
|
||||||
|
RETURN_FALSE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* }}} */
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -15,6 +15,7 @@ extern zend_module_entry mhash_module_entry;
|
||||||
PHP_FUNCTION(mhash_get_block_size);
|
PHP_FUNCTION(mhash_get_block_size);
|
||||||
PHP_FUNCTION(mhash_get_hash_name);
|
PHP_FUNCTION(mhash_get_hash_name);
|
||||||
PHP_FUNCTION(mhash_count);
|
PHP_FUNCTION(mhash_count);
|
||||||
|
PHP_FUNCTION(mhash_keygen_s2k);
|
||||||
PHP_FUNCTION(mhash);
|
PHP_FUNCTION(mhash);
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue