Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- weak key
- Bandit Level 1 → Level 2
- Cube Root Attack
- spoofing
- cryptography
- 웹해킹
- 드림핵
- picoCTF
- OverTheWire Bandit Level 1 → Level 2
- dns
- pycrpytodome
- 암호학
- arp
- bandit
- shellcode
- return address overflow
- CSRF
- 시스템해킹
- RSA Common Modulas Attack
- Hastad
- overthewire
- Franklin-Reiter Related Message Attack
- RSA
- dreamhack
- Montgomery Reduction
- XSS
- AES
- Crypto
- redirect
- rao
Archives
- Today
- Total
목록Programming (1)
암호(수학) 등.. 공부한 거 잊을거 같아서 만든 블로그

n진수를 10진수로 변환 ABCD = A * n^3 + B * n^2 + C * n^1 + D * n^0 10진수를 n진수로 변환 C언어로 진법 변환 구현 notation.h //notation.h char* convertBin(char* number); char* converterOct(char* number); int convertDec(char* number); char* convertHex(char* number); int isBin(char* number); int isOct(char* number); int isDec(char* number); int isHex(char* number); int whatNotation(char* number); notation.c //notation.c #de..
Programming
2022. 5. 1. 12:29