Home
last modified time | relevance | path

Searched refs:tmp_salt (Results 1 – 2 of 2) sorted by relevance

/PHP-8.3/ext/standard/
H A Dcrypt_sha256.c374 char *tmp_salt = NULL; in php_sha256_crypt_r() local
386 tmp_salt = (char *) do_alloca(salt_len + 1 + __alignof__(uint32_t), use_heap_salt); in php_sha256_crypt_r()
388 …memcpy(tmp_salt + __alignof__(uint32_t) - (uintptr_t)tmp_salt % __alignof__ (uint32_t), salt, salt… in php_sha256_crypt_r()
585 if (tmp_salt != NULL) { in php_sha256_crypt_r()
586 free_alloca(tmp_salt, use_heap_salt); in php_sha256_crypt_r()
H A Dcrypt_sha512.c408 char *tmp_salt = NULL; in php_sha512_crypt_r() local
421 tmp_salt = (char *) do_alloca(salt_len + 1 + __alignof__(uint64_t), use_heap_salt); in php_sha512_crypt_r()
422 …salt = copied_salt = memcpy(tmp_salt + __alignof__(uint64_t) - (uintptr_t)tmp_salt % __alignof__(u… in php_sha512_crypt_r()
632 if (tmp_salt != NULL) { in php_sha512_crypt_r()
633 free_alloca(tmp_salt, use_heap_salt); in php_sha512_crypt_r()

Completed in 11 milliseconds