4/2
정보의 3요소: 적, 지형, 기상 나폴레옹은 모스크바에서 좌절-General Winter, General Mud 첩보: 뜬 소문, 찌라시첩보를 쓸 수 있게 가공->정보(refined!) 기동: maneuver tempo: 상대적 속도, 리듬! 전투력 상대적 우세를 갖는 방법: 집중! 적을 분산시킨다! 분석적 방법/ 직관적 방법 METT+TC(Mission, Enemy, Troop available(가용부대->아군), Terrain, Time, Civil consideration) KJCCS합동지휘통제체계 Korean Joint Command and Control System MIMS Military Intelligence Management System: 군사정보통합처리체계 ATCSAFCCS KNCCS ..
2018. 4. 2.
3/27
#include #include #include "gmp.h"#include clock_t elapsed; float sec;#define START_WATCH \{\elapsed = -clock(); \}\ #define STOP_WATCH \{\elapsed += clock(); \sec = (float)elapsed / CLOCKS_PER_SEC; \}\ #define PRINT_TIME(qstr) \{\printf("\n[%s: %.5f s]\n", qstr, sec); \}\ void RSA_speed_test(int RSA_SIZE, gmp_randstate_t state) {//RSA Key Generation//공개키 : n, e//비밀키 : p,q,dmpz_t n, e, p, q, d;m..
2018. 3. 27.