hash_sha256()
Si applica a: ✅Microsoft Fabric✅Azure Esplora dati✅ Azure Monitor✅Microsoft Sentinel
Restituisce un valore hash sha256 dell'input di origine.
Sintassi
hash_sha256(
source)
Altre informazioni sulle convenzioni di sintassi.
Parametri
Nome | Digita | Obbligatorio | Descrizione |
---|---|---|---|
source | scalare | ✔️ | Valore di cui eseguire l'hashing. |
Valori restituiti
Valore hash sha256 del scalare specificato, codificato come stringa esadecimale (stringa di caratteri, ognuno dei quali rappresenta un singolo numero esadecimale compreso tra 0 e 255).
Avviso
L'algoritmo usato da questa funzione (SHA256) non verrà modificato in futuro, ma è molto complesso da calcolare. Gli utenti che necessitano di una funzione hash "lightweight" per la durata di una singola query sono invitati a usare invece l'hash() della funzione.
Esempi
print
h1=hash_sha256("World"),
h2=hash_sha256(datetime(2020-01-01))
Output
h1 | h2 |
---|---|
78ae647dc5544d227130a0682a51e30bc7777fbb6d8a8f17007463a3ecd1d524 | ba666752dc1a20eb750b0eb64e780cc4c968bc9fb8813461c1d7e750f302d71d |
Nell'esempio seguente viene usata la hash_sha256()
funzione per aggregare StormEvents in base al valore hash SHA256 di State.
StormEvents
| summarize StormCount = count() by State, StateHash=hash_sha256(State)
| top 5 by StormCount desc
Output
Provincia | StateHash | StormCount |
---|---|---|
TEXAS | 9087f20f23f91b5a77e8406846117049029e6798ebbd0d38aea68da73a00ca37 | 4701 |
KANSAS | c80e328393541a3181b258cdb4da4d00587c5045e8cf3bb6c8fdb7016b69cc2e | 3166 |
IOWA | f85893dca466f779410f65cd904fdc4622de49e119ad4e7c7e4a291ceed1820b | 2337 |
ILLINOIS | ae3eeabfd7eba3d9a4ccbfed6a9b8cff269dc4325906476282e0184cf81b7fd | 2022 |
MISSOURI | d15dfc28abc3eee73b7d1f664a35980167ca96f6f90e034db2a6525c0b8ba61b1 | 2016 |