Dieses Repository enthält Python-Dateien die im Rahmen des Wahlpflichtmoduls "Informationssysteme in der Medizintechnik" (Dozent: Prof. Dr. Oliver Hofmann) erstellt wurden und verwaltet deren Versionskontrolle.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Aufg2_Starthash.py 168B

1234567891011
  1. import sys
  2. from krypto import hashes
  3. myString = bytearray("Hello", encoding='utf-8')
  4. hashwert = hashes.hashMod(myString)
  5. print("Der Hashwert lautet: ", hashwert)