codito / sistine

A python based sify broadband client

This URL has Read+Write access

sistine / modBlowfish.c
100644 29 lines (16 sloc) 0.486 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*============================================================
 
Modified Blowfish Encryption Utility
By Liet-Kynes
 
See blowfish.c for more information
 
============================================================*/
 
 
 
 
#include <stdio.h>
#include "blowfish.h"
 
 
int main(int argc, char** argv) {
 
  if(argc!=3) {
    printf("Usage: modBlowfish plaintext key");
    return 1;
  } else {
    printf((char*)encryptString(argv[1],argv[2]));
  }
 
  return 0;
 
}