[TIL] 2023-03-27 DAY8
프라이빗 키 : 숫자
공개 키 : 점의 좌표(x,y)
타원 곡선의 시작점은 표준으로 정해져있음.
개인 키는 연산을 몇 번 할 것인지 알려주고 공개키는 그 연산을 거친 결과값이다.(K=k*G)
타원곡선 곱셈함수를 이용하여 공개 키를 생성한다. -> 추적이 힘든 일방향성임.
비압축 공개키 : K=04+x좌표+y좌표
비트코인 주소 생성 과정
https://royalforkblog.github.io/2014/08/11/graphical-address-generator/
타원 곡선 암호화
https://curves.xargs.org/
타원 곡선 조절 사이트
https://www.geogebra.org/m/xDFZT5F6
https://github.com/dowoo303/startScreen2
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
function onClickToggle(value) {
const nft = document.querySelector(".nft");
const nftView = document.querySelector(".nftView");
if (value) {
nft.style.display = "inline-block";
nftView.style.display = "none";
} else {
nft.style.display = "none";
nftView.style.display = "inline-block";
}
}