We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76fc1fe commit 303082bCopy full SHA for 303082b
1 file changed
docs/references/authentication/hmac.md
@@ -170,14 +170,14 @@ You will also be able to adjust the default Driver `$hmacEncryption['driver']` a
170
`$hmacEncryption['driver']`, and `$hmacEncryption['digest']`) are set in array format (see below).
171
172
```php
173
-public array $hmacEncryption [
+public array $hmacEncryption = [
174
'key' => [
175
'k1' => 'hex2bin:923dfab5ddca0c7784c2c388a848a704f5e048736c1a852c862959da62ade8c7',
176
],
177
- 'driver' => ['k1' => 'OpenSSL'],
178
- 'digest' => ['k1' => 'SHA512'],
179
- 'currentKey' => 'k1',
180
- 'deprecatedKey' => null
+ 'driver' => ['k1' => 'OpenSSL'],
+ 'digest' => ['k1' => 'SHA512'],
+ 'currentKey' => 'k1',
+ 'deprecatedKey' => null,
181
];
182
```
183
0 commit comments