티스토리 뷰
참고 : https://docs.python.org/2/library/struct.html
Python 문자열로 표현된 C structs와 Python Value 간의 변환
파일에 Binary Data를 저장하거나 Network Connection 시 사용
struct.pack(fmt, v1, v2,...)
- 지정된 Format에 따라 v1, v2의 value를 Pack을 수행하며 그 결과는 String으로 리턴
struct.unpack(fmt, string)
- 지정된 Format에 따라 String을 Unpack을 수행하며 그 결과는 Tuple로 리턴
Character | Byte order | Size | Alignment |
---|---|---|---|
@ | native | native | native |
= | native | standard | none |
< | little-endian | standard | none |
> | big-endian | standard | none |
! | network (= big-endian) | standard | none |
Format | C Type | Python type | Standard size | Notes |
---|---|---|---|---|
x | pad byte | no value | ||
c | char | string of length 1 | 1 | |
b | signed char | integer | 1 | (3) |
B | unsigned char | integer | 1 | (3) |
? | _Bool | bool | 1 | (1) |
h | short | integer | 2 | (3) |
H | unsigned short | integer | 2 | (3) |
i | int | integer | 4 | (3) |
I | unsigned int | integer | 4 | (3) |
l | long | integer | 4 | (3) |
L | unsigned long | integer | 4 | (3) |
q | long long | integer | 8 | (2), (3) |
Q | unsigned long long | integer | 8 | (2), (3) |
f | float | float | 4 | (4) |
d | double | float | 8 | (4) |
s | char[] | string | ||
p | char[] | string | ||
P | void * | integer | (5), (3) |
'프로그래밍 > Python' 카테고리의 다른 글
[Zipfile of python] 해당 경로의 모든 zip파일 풀기(+암호) (9) | 2016.01.16 |
---|---|
[os.shutil of python] 해당 경로의 폴더 무작위 삭제 (0) | 2016.01.16 |
[Telegram Bot API Token 생성하기] (6) | 2016.01.13 |
[Telegram CLI] Python을 이용하여 Telegram Bot 만들기 (5) | 2016.01.13 |
[Copy, DeepCopy of Python] 얕은 복사, 깊은 복사 (0) | 2016.01.12 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 해킹메일
- CVE-2018-9375
- AMSI
- infostealer
- 스피어피싱
- 한글악성코드
- Servey
- 비트코인
- koodous
- Decoding
- cuckoo-sandbox
- Yara
- .wll
- keylogger
- 위협정보공유
- malware
- idapython
- us-cert
- vuln
- Kimsuky
- MS-Office
- Static Analysis Engine
- Bisonal
- 악성코드
- CVE-2018-0798
- 멋쟁이사자처럼 4기
- 출처 : Do it 안드로이드 프로그래밍
- Cisco Talos
- VirusBulletin
- Flybits
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함