#include <stdio.h> #include <string.h> #include <math.h> //Adicionei alguns comentários pra ficar melhor de entender, e pra eu nao me perder tambem no código. // Função para calcular o Máximo Divisor Comum (MDC) entre dois números int calcular_mdc(int numero1, int numero2) { while (numero2 != 0) { int temporario = numero2; numero2 = numero1 % numero2; numero1 = temporario; } return numero1; } // Função para calcular o inverso modular de um número dado um módulo int calcular_inverso_modular(int numero, int modulo) { int modulo_inicial = modulo, valor_y = 0, valor_x = 1; while (numero > 1) { int quociente = numero / modulo; int temporario = modulo; modulo = numero % modulo; numero = temporario; temporario = valor_y; valor_y = valor_x - quociente * valor_y; valor_x = temporario; } if (valor_x < 0) valor_x += modulo_inicial; return valor_x; } // Converte um caractere em um número correspondente int caractere_para_numero(char caractere) { if (caractere >= 'A' && caractere <= 'Z') return caractere - 'A' + 11; if (caractere >= 'a' && caractere <= 'z') return caractere - 'a' + 11; return -1; } // Converte um número em um caractere correspondente char numero_para_caractere(int codigo) { if (codigo >= 11 && codigo <= 36) return 'A' + (codigo - 11); return '?'; } // Calcula a potência modular de forma eficiente long long calcular_potencia_modular(long long base, long long expoente, long long modulo) { long long resultado = 1; base = base % modulo; while (expoente > 0) { if (expoente % 2 == 1) resultado = (resultado * base) % modulo; expoente = expoente >> 1; base = (base * base) % modulo; } return resultado; } int main() { // Declaração de variáveis para os números primos, chave pública e tamanho do bloco int primo_p, primo_q, chave_publica_e, tamanho_bloco; // Entrada dos números primos p e q printf("\n--------------------------\n"); printf("Informe o número primo p: "); printf("\n--------------------------\n"); scanf("%d", &primo_p); printf("Informe o número primo q: "); printf("\n--------------------------\n"); scanf("%d", &primo_q); // Calcula o valor de N (produto de p e q) e Z (totiente de Euler) int valor_n = primo_p * primo_q; int totiente_z = (primo_p - 1) * (primo_q - 1); printf("\n--------------------------\n"); printf("N = %d\n", valor_n); printf("--------------------------\n"); printf("Z = %d\n", totiente_z); printf("--------------------------\n"); // Entrada da chave pública e tamanho do bloco printf("Informe a chave pública E: "); scanf("%d", &chave_publica_e); printf("Informe o tamanho do bloco: "); scanf("%d", &tamanho_bloco); // Verifica se a chave pública é coprima de Z if (calcular_mdc(chave_publica_e, totiente_z) != 1) { printf("Erro: a chave pública E não é coprima de Z(%d).\n", totiente_z); return 1; } // Calcula a chave privada D usando o inverso modular int chave_privada_d = calcular_inverso_modular(chave_publica_e, totiente_z); printf("Chave pública: (E=%d, N=%d)\n", chave_publica_e, valor_n); printf("Chave privada: (D=%d, N=%d)\n", chave_privada_d, valor_n); // Entrada da mensagem a ser criptografada char mensagem[256]; printf("Informe a mensagem a ser criptografada (apenas letras): "); scanf("%s", mensagem); if (strlen(mensagem) == 0) { printf("Erro: mensagem vazia.\n"); return 1; } // Conversão da mensagem para blocos numéricos int blocos_mensagem[256]; int tamanho_mensagem = strlen(mensagem); printf("\nMensagem convertida em blocos:\n"); for (int i = 0; i < tamanho_mensagem; i++) { blocos_mensagem[i] = caractere_para_numero(mensagem[i]); if (blocos_mensagem[i] == -1) { printf("Erro: a mensagem contém caracteres inválidos.\n"); return 1; } printf("%d ", blocos_mensagem[i]); } // Criptografa cada bloco da mensagem printf("\n\nBlocos criptografados:\n"); long long mensagem_criptografada[256]; for (int i = 0; i < tamanho_mensagem; i++) { mensagem_criptografada[i] = calcular_potencia_modular(blocos_mensagem[i], chave_publica_e, valor_n); printf("%lld ", mensagem_criptografada[i]); } // Descriptografa cada bloco da mensagem criptografada printf("\n\nBlocos descriptografados:\n"); for (int i = 0; i < tamanho_mensagem; i++) { int mensagem_descriptografada = calcular_potencia_modular(mensagem_criptografada[i], chave_privada_d, valor_n); printf("%c", numero_para_caractere(mensagem_descriptografada)); } printf("\n"); return 0; }
Write, Run & Share C Language code online using OneCompiler's C online compiler for free. It's one of the robust, feature-rich online compilers for C language, running the latest C version which is C18. Getting started with the OneCompiler's C editor is really simple and pretty fast. The editor shows sample boilerplate code when you choose language as 'C' and start coding!
OneCompiler's C online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample C program which takes name as input and print your name with hello.
#include <stdio.h>
int main()
{
char name[50];
printf("Enter name:");
scanf("%s", name);
printf("Hello %s \n" , name );
return 0;
}
C language is one of the most popular general-purpose programming language developed by Dennis Ritchie at Bell laboratories for UNIX operating system. The initial release of C Language was in the year 1972. Most of the desktop operating systems are written in C Language.
When ever you want to perform a set of operations based on a condition if-else
is used.
if(conditional-expression) {
// code
} else {
// code
}
You can also use if-else for nested Ifs and if-else-if ladder when multiple conditions are to be performed on a single variable.
Switch is an alternative to if-else-if ladder.
switch(conditional-expression) {
case value1:
// code
break; // optional
case value2:
// code
break; // optional
...
default:
// code to be executed when all the above cases are not matched;
}
For loop is used to iterate a set of statements based on a condition.
for(Initialization; Condition; Increment/decrement){
// code
}
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
while(condition) {
// code
}
Do-while is also used to iterate a set of statements based on a condition. It is mostly used when you need to execute the statements atleast once.
do {
// code
} while (condition);
Array is a collection of similar data which is stored in continuous memory addresses. Array values can be fetched using index. Index starts from 0 to size-1.
data-type array-name[size];
data-type array-name[size][size];
Function is a sub-routine which contains set of statements. Usually functions are written when multiple calls are required to same set of statements which increases re-usuability and modularity.
Two types of functions are present in C
Library functions are the in-built functions which are declared in header files like printf(),scanf(),puts(),gets() etc.,
User defined functions are the ones which are written by the programmer based on the requirement.
return_type function_name(parameters);
function_name (parameters)
return_type function_name(parameters) {
//code
}