Skip to content

Instantly share code, notes, and snippets.

View Ranjan13's full-sized avatar

Ranjan Satapathy Ranjan13

View GitHub Profile
@Ranjan13
Ranjan13 / Affine Encryption
Created August 30, 2014 12:59
Encryption of Affine Cipher
include<stdio.h>
#include<string.h>
# define MAX_EL 100
char ostr[MAX_EL]={0};
int main()
{
int x,a,b,i;
char c[MAX_EL]={0};
printf("Enter a,b values\n");
scanf("%d%d",&a,&b);