XTIME C Calculator Decimal Hexadecimal Multiplycation Bit

Xtime () - Funktion in C

  • Die Funktion xtime () im AES-Algorithmus ist eine Multiplikation von 02 im Dezimalsystem. Die Funktion kann auch für das hexadezimale oder binäre Eingabeformat verwendet werden
  • Das Programm arbeitet mit der Standardeingabe des Benutzers, der die Eingaben eingeben kann, und das Programm gibt das Ergebnis zurück. Mit dem Programm wird die hexadezimale oder dezimale Form jeder Eingabe angegeben.

  • Programmübersetzung über Makefile - make all:

    all: dec hex
    
    dec:
      gcc -o dec.exe dec.c
    
    hex:
      gcc -o hex.exe hex.c 
    

    C-Programm:

    Source code on Github: Github repo

    DEC output

    Xtime calculator in C language - DEC OUTPUT

    HEX output

    Xtime calculator in C language - HEX OUTPUT