Cryptography

· Cryptography
Ceasar cipher decryption function implementation by Python (2020.) # 복호화 함수 구현 def decrption (encrpt_text, key): #암호화문, 암호키 decrpt_text="" #decrpt_text 초기화 for i in encrpt_text: #encrpt_text의 글자수만큼 반복 if ord(i) > 64 and ord(i) 96 and ord(i) < 123: #소..
· Cryptography
1. Introduction 1) The Topic of Cryptanalysis - Cryptanalysis(암호분석)은 컴퓨터 발전으로 인해 1980년대 후-1990년대 초부터 급격히 발달하기 시작. - 암호분석을 잘하기 위해서는 breaking codes를 연습하는 방법뿐! 2) Concepts of security - Security (=Safety) : freedom from danger 위험하지 않은 것, 즉 안전한 것. - Information security : 정보를 인가되지 않은 접근으로부터 지키는 것, 세 가지 원칙 CIA (confidentiality 기밀성, integrity 무결성, availability 가용성) 3) Cryptology = Cryptography + Crypt..
lvolzoo
'Cryptography' 카테고리의 글 목록