티스토리 뷰
0. hashlib
-
1. 예제
1
2
3
4
5
6
7
|
import json
import hashlib
block = {'index': 1, 'timestamp': 1570176533.2550528, 'transactions': [], 'proof': 100, 'previous_hash ': '1'}
block_string = json.dumps(block,sort_keys = True).encode()
print(hashlib.sha256(block_string).hexdigest())
|
cs |
>> d9360c4ec2b62490970a360964e32f21299c52c29be7e9f46d1787af7cc31c82
'Programming > python' 카테고리의 다른 글
python from itertools import product (0) | 2019.10.07 |
---|---|
python 멀티 프로세스와 멀티 스레드 (0) | 2019.10.05 |
python partial 함수와 lambda 함수 (0) | 2019.10.04 |
python numpy reshape 정리 (0) | 2019.10.03 |
신호처리에서의 signal decimate와 spectrogram (1) | 2019.10.03 |
댓글