암호화 된 개인 키에서 암호화되지 않은 개인 키를 얻는 방법은 무엇입니까?
-
-
먼저eztz lib를 가져온 다음 다음을 사용해야합니다. ```eztz.crypto.extractEncryptedKeys (encryptedPrivateKey,암호)``` 추출 된 키의 전체 세트를 반환합니다.You need to import eztz lib first and then use this: ```eztz.crypto.extractEncryptedKeys(encryptedPrivateKey, password)``` It will return a full set of extracted keys.
- 2
- 2019-02-10
- RoMarQ
-
클라이언트 측에서 사용되는 Btw는 창 obj가 필요하므로 백엔드에서 사용하는 경우 작동하지 않습니다. 백엔드에서 작동하도록 변경해야합니다.Btw, that function is used on client side, will not work if you are using it on backend as it needs the window obj. You need to change it to work on backend.
- 0
- 2019-02-10
- RoMarQ
-
2 대답
- 투표
-
- 2019-02-12
이 가이드 .내부에 Python 코드가 있습니다.
You may want to read this guide. There is some Python code inside.
-
-
이 오류가 발생합니다. ``` 파일 "/Users/user/Desktop/privkeyconvert/pytezos.py",54 행 def __init __ (self,key : str,passphrase : str=None,email : str=None) : ^ SyntaxError : 잘못된 구문```im getting this error : ``` File "/Users/user/Desktop/privkeyconvert/pytezos.py", line 54 def __init__(self, key: str, passphrase: str = None, email: str = None): ^ SyntaxError: invalid syntax```
- 0
- 2019-02-10
- Mr Z
-
어떻게 실행하고 있습니까?How are you running it?
- 0
- 2019-02-10
- Arthur B
-
AttributeError : 'pytezos'모듈에 'key'속성이 없습니다.python3 cli에서 실행AttributeError: module 'pytezos' has no attribute 'key'. running in the python3 cli
- 0
- 2019-08-08
- Gaia
-
테 조스 클라이언트의 암호화 된 개인 키에서 암호화되지 않은 개인 키를 가져올 방법을 찾을 수 없습니다.
tezbox를 사용하는 방법을 찾았습니다. 개인 키를tezbox로 가져온 다음 개인 키를 표시합니다. 표시되는 키는 암호화되지 않았습니다. '비어있는'비밀번호가있는tezbox로 암호화 된 개인 키를 가져올 수 없어이 방법을 사용할 수 없습니다.
다음을 사용하여 eztz 를 사용할 수 있다고 들었습니다.
다음을 사용하여 pytezos 를 사용할 수 있다고 들었습니다.
하지만 위의 옵션을 사용하는 방법을 알 수 없습니다. 나는eztznode.js 방법을 시도했지만 이것을 수행하는 방법에 대한 예를 고맙게 생각합니다.