일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 30 | 31 |
- pwnable.kr
- 미로 탐색 알고리즘
- System
- 정렬 알고리즘
- Stack
- web
- c언어
- War Game
- LoB
- SWiFT
- 백준
- windosws wbcs
- Java
- 파이썬
- PHP
- 스택
- 시간복잡도
- HTML
- windosw 문자열
- ftz
- C
- 암호수학
- 자료구조
- ftz level13
- level13
- OSI
- 두근두근 자료구조
- 재귀
- 큐
- 파일 시스템
- Today
- Total
목록암호수학 (4)
나의 기록, 현진록
확장 유클리드 알고리즘 유클리드 알고리즘이란 두 수의 최대공약수를 구하는 방법이다. 12345678910111213141516171819202122232425262728#include void main() { int a, b; int r, r1, r2, q[50] = {0}; int s[50] = { 1,0 }; int t[50] = { 0,1 }; printf("a, b = ? "); scanf("%d %d", &a, &b); r = a; r1 = b; int count = 0; while (r1 >= 1) { q[count+1] = r / r1; r2 = r%r1; if (count >= 2) { s[count] = s[count - 2] - q[count-1]*s[count - 1]; t[count..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869#include #include void frequencyCount(int *alphabetList, char *cipherText);void printAlphabetList(int *alphabetList);void changeText(char findAlphabet, char changeAlphabet, char *Text);void printText(char *text);void printChangeList(char *changeList); void main() { int..
카이사르(시져) 암호로 암호화된 문장을 복호화 시켜 평문을 찾아보자. 평문 : Ask again later. 암호문 : Hzr hnhpu shaly. 위와 같은 평문과 암호문을 예로 들면 실행화면은 다음과 같다. 7번 째 줄에서 평문과 암호화 키를 찾을 수 있다. 코드 # 복호화 함수 구현 def decoding (encode_str, n): # 암호화문, 암호키 decode_str="" for i in encode_str: # D_str의 글자수만큼 반복 (D_str의 문자열에서 한글자 참조할 수 있음) if (ord(i)>=65 and ord(i)= 97 and ord(i)