aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-12-30 09:01:44 +0000
committerAkshay <[email protected]>2020-12-30 09:01:44 +0000
commitbcde52891e80500700d2a66e96fbdf504f771056 (patch)
tree4276018c40d755f07376b3624ca3e33f8f295ec2
parente8186e657d51d9deedd171981d314933ed408db5 (diff)
add dh & rsa
-rw-r--r--q8/dh.c38
-rw-r--r--q8/rsa.cpp81
2 files changed, 119 insertions, 0 deletions
diff --git a/q8/dh.c b/q8/dh.c
new file mode 100644
index 0000000..074dfc7
--- /dev/null
+++ b/q8/dh.c
@@ -0,0 +1,38 @@
1#include <stdio.h>
2#include <stdlib.h>
3#include <time.h>
4
5// Function to compute a^m mod n
6int compute(int a, int m, int n) {
7 int r;
8 int y = 1;
9
10 while (m > 0) {
11 r = m % 2;
12 if (r == 1)
13 y = (y * a) % n;
14 a = a * a % n;
15
16 m = m / 2;
17 }
18
19 return y;
20}
21
22// C program to demonstrate Diffie-Hellman algorithm
23int main() {
24 int p = 23; // modulus
25 int g = 5; // base
26 int a, b; // a - Alice's Secret Key, b - Bob's Secret Key.
27 int A, B; // A - Alice's Public Key, B - Bob's Public Key
28 srand(time(0));
29 a = rand(); // or use rand()
30 A = compute(g, a, p);
31 srand(time(0));
32 b = rand(); // or use rand()
33 B = compute(g, b, p);
34 int keyA = compute(B, a, p);
35 int keyB = compute(A, b, p);
36 printf("\nAlice's Secret Key is %d\nBob's Secret Key is %d\n\n", keyA, keyB);
37 return 0;
38}
diff --git a/q8/rsa.cpp b/q8/rsa.cpp
new file mode 100644
index 0000000..c38e7d6
--- /dev/null
+++ b/q8/rsa.cpp
@@ -0,0 +1,81 @@
1#include <iostream>
2#include <math.h>
3#include <stdlib.h>
4#include <string.h>
5
6using namespace std;
7
8long int gcd(long int a, long int b) {
9 if (a == 0)
10 return b;
11 if (b == 0)
12 return a;
13 return gcd(b, a % b);
14}
15
16long int isprime(long int a) {
17 int i;
18 for (i = 2; i < a; i++) {
19 if ((a % i) == 0)
20 return 0;
21 }
22 return 1;
23}
24
25long int encrypt(char ch, long int n, long int e) {
26 int i;
27 long int temp = ch;
28 for (i = 1; i < e; i++)
29 temp = (temp * ch) % n;
30 return temp;
31}
32
33char decrypt(long int ch, long int n, long int d) {
34 int i;
35 long int temp = ch;
36 for (i = 1; i < d; i++)
37 ch = (temp * ch) % n;
38 return ch;
39}
40
41int main() {
42 long int i, len;
43 long int p, q, n, phi, e, d, cipher[50];
44 char text[50];
45
46 cout << "Enter the text to be encrypted: ";
47 cin.getline(text, sizeof(text));
48 len = strlen(text);
49 do {
50 p = rand() % 30;
51 } while (!isprime(p));
52 do {
53 q = rand() % 30;
54 } while (!isprime(q));
55 n = p * q;
56 phi = (p - 1) * (q - 1);
57 do {
58 e = rand() % phi;
59 } while (gcd(phi, e) != 1);
60 do {
61 d = rand() % phi;
62 } while (((d * e) % phi) != 1);
63 cout << "Two prime numbers (p and q) are: " << p << " and " << q << endl;
64 cout << "n(p * q) = " << p << " * " << q << " = " << p * q << endl;
65 cout << "(p - 1) * (q - 1) = " << phi << endl;
66 cout << "Public key (n, e): (" << n << ", " << e << ")\n";
67 cout << "Private key (n, d): (" << n << ", " << d << ")\n";
68 for (i = 0; i < len; i++)
69 cipher[i] = encrypt(text[i], n, e);
70 cout << "Encrypted message: ";
71 for (i = 0; i < len; i++)
72 cout << cipher[i];
73 for (i = 0; i < len; i++)
74 text[i] = decrypt(cipher[i], n, d);
75 cout << endl;
76 cout << "Decrypted message: ";
77 for (i = 0; i < len; i++)
78 cout << text[i];
79 cout << endl;
80 return 0;
81}