AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Delphi-PRAXiS - Lounge Delphi-News aus aller Welt Functions to calculate the hash of strings and files
Thema durchsuchen
Ansicht
Themen-Optionen

Functions to calculate the hash of strings and files

Ein Thema von DP News-Robot · begonnen am 25. Aug 2018
Antwort Antwort
Benutzerbild von DP News-Robot
DP News-Robot

Registriert seit: 4. Jun 2010
14.959 Beiträge
 
#1

Functions to calculate the hash of strings and files

  Alt 25. Aug 2018, 22:30
Then have a number of functions to calculate the hash (MD5, SHA1, SHA224, SHA256, SHA 384, SHA 512, BobJenkins) of strings and files. Tested in RAD Studio 10 - Berlin function GetStrHashMD5(Str: String): String; var HashMD5: THashMD5; begin HashMD5: = THashMD5.Create; HashMD5.GetHashString (Str); result: = HashMD5.GetHashString (Str); end;*function GetStrHashSHA1(Str: String): String; var HashSHA: THashSHA1; begin HashSHA: = THashSHA1.Create; HashSHA.GetHashString (Str); result: = HashSHA.GetHashString (Str); end;*function GetStrHashSHA224(Str: String): String; var HashSHA: THashSHA2; begin HashSHA: = THashSHA2.Create; HashSHA.GetHashString (Str); result: = HashSHA.GetHashString (Str, SHA224); end;*function GetStrHashSHA256(Str: String): String; var HashSHA: THashSHA2; begin HashSHA: = THashSHA2.Create; HashSHA.GetHashString (Str); result: = HashSHA.GetHashString (Str, SHA256); end;*function GetStrHashSHA384(Str: String): String; var HashSHA: THashSHA2; begin HashSHA: = T

Weiterlesen...
  Mit Zitat antworten Zitat
Antwort Antwort


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 19:58 Uhr.
Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz