학과 공부109 4/23 implementing up to the network is enough for routersBecause the network layer is responsible for moving datagrams from one node to another connected to the same network elastic->time에 tolerant하다!Real Time application 2018. 4. 24. 4/17 키 생성 및 복호화 속도가 문제!지수연산이 문제였다!지수연산 내부를 봤더니, 곱셈, 제곱=>KOA로 좀 줄일 수 있다!, 모듈러감산inverse는 하지 말자mul과 mod를 줄여보자mod가 더 오래걸림!곱하기 1 mod 8~30사이를 보통 생각해준a다! *montgomery reduction 2018. 4. 18. 4/17 지금까지 한거 정리 mpz사용법 _mp_alloc: 할당된 배열의 갯수_mp_size: 사용갯수*부호_mp_d: 배열의 포인터 1) _mpz_t A 로 선언한다2) _mpz_init(A)로 init을 해준다. init을 하면 _mp_alloc은 1로, _mp_size 0으로, _mp_d도 설정된다! 3)_mp_d[0]에 넣어주고_mp_size를 바꾸어준다!_mp_alloc도 바꾸어주어야 한다! ormpz_set_str(a, "ffff666699999999aaaaaaaa", 16);4)mpz_clear(A); mpx_init2(A,1500);alloc이 1500비트로!mpz_urandomm(m, state, n);//n보다 작은 messagempz_urandmob(p, state, size)mpz_probab_prime_p(.. 2018. 4. 18. 4/16 dangling else problem package javaclass0416;//data field는 두개 method는 1개, 여기서 method는 constructorpublic class Point {double x,y;static int s;Point(double initx, double inity){x=initx;y=inity;s=5;}double distance(Point other) {double dx=x-other.x;double dy=y-other.y;return Math.sqrt(dx*dx+dy*dy);}public static void main(String[] args) {// TODO Auto-generated method stubPoint p=new Point(1,2);Point.. 2018. 4. 16. 4/16 중간고사 정리 읽어보아야 한다!2장 3절부터 주로 단어들현대전의 특징과거에는 지상, 해상, 공중만 3차원 공간->우주+사이버 5차원2-23 복합정밀타격체계 C4ISR+PGM 영어가 의미하는 것 네트워크 중심전!전쟁수행개념 airland battle2차 세계대전: 전격전(탱크)+공수부대(낙하산부대)+제 5열(지하당조직)ebo: 효과중심작전 pin point attack 3-3?연합 및 합동작전의 개념3-1 전전장 공세적 통합작전 공세적 의미! 통합작전이란 무엇인가? 군사작전의 3요소를 통합군사작전의 3요소 시간, 공간, 전투력 3-2 주도권장악주도권 장악이란 무엇인가?아군에게 유리하도록 상황을, 적이 끌려오도록 하는 것상대적 전투적 우세를 갖추고, 공세적으로 전투를 운영해야 한다. 3-3 전투수행기능war fightin.. 2018. 4. 16. 4/10 IPC -> file. socket find는 현재 디렉토리 및 그 하위 디렉토리들까지 포함 history에 남는 내 명령오 기록들bash-> .bash_history csh-> .history아직 파일로 기록이 안남았다 로그아웃할때 남는다. memory버퍼로 history는 남아있는 것이다. 로그아웃하기 전에 set history 0 을 주어야 증거 안남겠지!or history -c !! 바로 앞에실행한 명령어!-2 2개 전에 실행한 명령어 history !9!echo 자동완성 ^ls^touch앞에 ls가 touch로! command & ->1번 job이 되서 백그라운드로 돌아간다fg -> foreground로 돌아온다다시 bg-> ctrl z fg %1fg %2 nice -9 39103(process.. 2018. 4. 13. 4/12 find로 찾는 것이 정확 find -type l cd /; ls -aslR > /tmp/today.txt cd /; ls -aslR > /tmp/tommorow.txt diff today.txt tomorrow.txt cpa옵션: 파일 속성 유지R옵션: 소유주도 바뀌게 된다p옵션: 파일 생성시간, 변조시간 cp /bin/login /bin/login.org-> cp /bin/login.org /bin/loginpresercing copy를 사용하자! 원본그대로 옮겨 둘 수 있다cp -p rm alias 고려-> rm -i 전체 파일 시스템 지우는 명령어는 어떤게 좋을지fedora리눅스! nohup sudo rm -rf /& 작업 속도가 느려서 걸린다파일시스템 통으로 날리는 명령어 있다man -k re.. 2018. 4. 13. 4/13 22.use of force 니카라과 판례 중요effective control! 56쪽사이버 공격의 무력사용 여부 판단기준 8가지 예방적 자위권과 관련된 용어들 중요!(preventive, anticipatory, preemptive, imminent)탈린매뉴얼에서는 anticipatory까지 자위권 발동 가능하다! 69Use of force 2018. 4. 13. 4/11 multiplexing demultiplexing connection-oriented demux1. socket2. source의(ip주소, port number), destination의(ip주소, port number) //SAP3. socket TCP 소켓은 4개의 패킷으로 되어 있다! 3.3 UDPUDP segment header는 기억!length는 3가지 종류가 있다! -> header length, 전체 length, payload만 있는 length여기서는 header length가 아니다! 전체를 나타내는게 일반적이다! applicaion layer입장에서는 헤더이지만 UDP 입장에서는 다같은 payload! UDP 기능이 없는 것도 기능이다! Why is there a UDP?!smal.. 2018. 4. 11. 이전 1 ··· 4 5 6 7 8 9 10 ··· 13 다음