[C] Hex Converter

Iniciado por BigBear, 8 Enero 2012, 18:37 PM

0 Miembros y 1 Visitante están viendo este tema.

BigBear

Un simple programa para convertir texto en hex


/**
* Hex Converter
* Coded By Doddy H
* Based in hex encoder by Ka0x
*/

#include <stdio.h>
#include <string.h>

void head() {
 printf("\n -- == Hex Converter == --\n\n");    
}

void end() {
 printf("\n\n\n -- == Coded By Doddy H == --\n");
}

int main ( int argc, char **argv ) {
 char *text;
 int i,total;
 
 head();
 if(argc != 2) {
   printf("\n[+] Sintax : hex <text>");
 } else {
   text = argv[1];
   total = strlen(text);
   printf("\n[Text] : %s\n",text);
   printf("[Encode] : 0x");
   for(i=0;i<total;i++){
     printf("%x",text[i]);
   }
 }    
 end();
 return 0;
}

/** The End ? */