Stand: SMTP-Test, Admin-Mail-Tab, Notifiable-Fix, Lazy-Quill
- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
42
vendor/thecodingmachine/safe/generated/8.2/hash.php
vendored
Normal file
42
vendor/thecodingmachine/safe/generated/8.2/hash.php
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
namespace Safe;
|
||||
|
||||
use Safe\Exceptions\HashException;
|
||||
|
||||
/**
|
||||
* @param string $algo
|
||||
* @param string $key
|
||||
* @param int $length
|
||||
* @param string $info
|
||||
* @param string $salt
|
||||
* @return false|non-falsy-string
|
||||
*
|
||||
*/
|
||||
function hash_hkdf(string $algo, string $key, int $length = 0, string $info = "", string $salt = "")
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \hash_hkdf($algo, $key, $length, $info, $salt);
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param \HashContext $context
|
||||
* @param string $filename
|
||||
* @param \HashContext|null $stream_context
|
||||
* @throws HashException
|
||||
*
|
||||
*/
|
||||
function hash_update_file(\HashContext $context, string $filename, ?\HashContext $stream_context = null): void
|
||||
{
|
||||
error_clear_last();
|
||||
if ($stream_context !== null) {
|
||||
$safeResult = \hash_update_file($context, $filename, $stream_context);
|
||||
} else {
|
||||
$safeResult = \hash_update_file($context, $filename);
|
||||
}
|
||||
if ($safeResult === false) {
|
||||
throw HashException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user