2019-09-13 17:13:55 +02:00
|
|
|
---
|
|
|
|
title: securePasswordKdfAlgoSHA512
|
2019-12-27 17:48:04 +01:00
|
|
|
description: SHA512 KDF algo
|
2019-09-13 17:13:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: securePasswordKdfAlgoSHA512
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
SHA512 KDF algo
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|salt|[bytes](../types/bytes.md) | Yes|Salt|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [SecurePasswordKdfAlgo](../types/SecurePasswordKdfAlgo.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$securePasswordKdfAlgoSHA512 = ['_' => 'securePasswordKdfAlgoSHA512', 'salt' => 'bytes'];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
securePasswordKdfAlgoSHA512={_='securePasswordKdfAlgoSHA512', salt='bytes'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|