Hash: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx
Public Key: edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav
Secret Key: edsk3gUfUPyBSfrS9CCgmCiQsTCHGkviBDusMxDJstFtojtc1zcpsh
주변에 사용 가능한 JS 스 니펫이 있습니까?
I read this great post on tz1 keys with ed25519. I also saw that the eztz lib doesn't support ed25519 keys.
So I'm trying to understand briefly what is considered a valid procedure to get keys/address. Basically I'm trying to achieve in JS what the tezos-client does in that article above using elliptic ed25519.
Hash: tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx
Public Key: edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav
Secret Key: edsk3gUfUPyBSfrS9CCgmCiQsTCHGkviBDusMxDJstFtojtc1zcpsh
이 질문을 검토 용으로 표시하기 전에 질문 내용이 명확하지 않으므로 먼저 수정 해 주시겠습니까?그리고 이전 의견에서 언급했듯이eztz는 기본값이므로ed25519를 확실히 지원합니다.나열한eztz 링크를 따라 가서 문서로 이동하면generateKeys 호출이 표시됩니다.
before i flag this question for moderation, can you first please edit it as its unclear what you are asking. And as previous comment states, eztz definitely supports ed25519 as it's the default. Follow the eztz link you listed, and then go to the documentation and you will see the generateKeys call.
그렇게 긴 키를 생성하고 싶습니다!지금eztz는 98 자 길이의 개인 키를 생성합니다.https://github.com/TezTech/eztz에ed25519의 흔적이 없습니다-libsodium을 언급하고 있습니까?
I wanna generate keys that long! Right now eztz will generate me 98 chars length private keys. There's not trace of ed25519 in https://github.com/TezTech/eztz - are you referring to libsodium?
내가 참조.예,eztz는 일부 래퍼를 통해 나트륨을 사용하며ed25519/tz1을 지원합니다.tezos 프로그램에서 허용하는ed25519 비밀 키에는 long (전체 비밀 키)과 short (테 조스 프로그램이 기본적으로 표시하는 "seed")의 두 가지 형태가 있습니다.eztz는 긴 형태를 생산하고 있습니다.둘 다 잘 작동합니다.질문을 업데이트하여 이것이 귀하가 요청하는 내용임을 명확히 하시겠습니까?
I see. Yes, eztz uses sodium through some wrapper and does support ed25519/tz1. There are two forms of ed25519 secret keys accepted by the tezos programs -- long (the full secret key) and short (the "seed", which is what the tezos programs show you by default). eztz is producing the long form. Both should work fine. Maybe update the question to make it clear that this is what you're asking about?
이 내용
ed25519
가있는tz1 키에 대한 훌륭한 게시물입니다.또한 eztz lib가ed25519 키를 지원하지 않는 것을 확인했습니다.그래서 저는 키/주소를 얻기위한 유효한 절차가 무엇인지 간략히 이해하려고 노력하고 있습니다.기본적으로 tezos-client가 수행하는 작업을 JS에서 달성하려고합니다.> 타원ed25519 .
주변에 사용 가능한 JS 스 니펫이 있습니까?