> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/resources/de/other-resources/what-is-sha-256.md).

# Was ist SHA-256

Die Familie des Secure Hash Algorithm (SHA) umfasst mehrere kryptografische Hash-Funktionen, wobei SHA-256 eine weit verbreitete Variante ist. Kryptografische Hashes fungieren als digitale Signaturen für Daten und ermöglichen den Vergleich großer Datensätze anhand ihrer Hash-Werte anstatt ihres vollständigen Inhalts. Diese Methode ähnelt der Verwendung von Fingerabdrücken zur Identifizierung – jeder Datensatz hat einen einzigartigen Hash, und selbst eine geringfügige Änderung der Daten verändert den Hash-Wert.

SHA-256 erzeugt einen unverwechselbaren Hash mit fester Größe von 256 Bit (32 Byte) und funktioniert als Einwegverfahren, wodurch er sich ausgezeichnet für Datenintegritätsprüfungen, Authentifizierungs-Challenges, Manipulationsschutzmaßnahmen, digitale Signaturen und Blockchain-Anwendungen eignet.

Beim Herunterladen von Anwendungen, etwa von Devolutions, hilft SHA-256 beispielsweise dabei zu überprüfen, ob die empfangenen Daten mit dem Original übereinstimmen, und stellt so sicher, dass sie nicht durch Netzwerkfehler oder Malware-Angriffe verändert wurden. Um den Hash einer Datei zu prüfen, klicken Sie einfach auf das SHA-256-Symbol auf der Download-Seite der Devolutions-Website.

Weitere Hinweise dazu, wie Sie den SHA-256-Hash einer Datei erhalten, finden Sie in der Microsoft-Dokumentation zum Befehl [Get-FileHash](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/get-filehash?view=powershell-7.2). So können Sie ihn verwenden:

```powershell
Get-FileHash C:\Users\user1\Downloads\Setup.RemoteDesktopManager.exe -Algorithm SHA256 | Format-List.
```

Dieser Befehl liefert eine strukturierte Ausgabe des Hash-Werts und erleichtert so die Überprüfung der Integrität Ihrer Datei.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.devolutions.net/resources/de/other-resources/what-is-sha-256.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
