¿Cómo obtener una clave privada no cifrada a partir de una clave privada cifrada?
-
-
Primero debeimportareztz lib y luego usaresto: `` `eztz.crypto.extractEncryptedKeys (claveprivada cifrada,contraseña) '' Devolverá un conjunto completo de clavesextraídas.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
-
Por cierto,esafunción se usaen el lado del cliente,nofuncionará si laestá usandoen elbackend ya quenecesita la ventana obj. Necesita cambiarlopara quefuncioneen elbackend.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 respuestas
- votos
-
- 2019-02-12
Esposible que desee leer estaguía .Hay algo de código Python adentro.
You may want to read this guide. There is some Python code inside.
-
-
obtengoesteerror: '' Archivo "/Users/user/Desktop/privkeyconvert/pytezos.py",línea 54 def __init __ (self,key: str,passphrase: str=None,email: str=None): ^ SyntaxError: sintaxisno válidaim 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
-
¿Cómo loestásejecutando?How are you running it?
- 0
- 2019-02-10
- Arthur B
-
AttributeError:elmódulo 'pytezos'notiene ningún atributo 'clave'.corriendoen la cli depython3AttributeError: module 'pytezos' has no attribute 'key'. running in the python3 cli
- 0
- 2019-08-08
- Gaia
-
Nopuedoencontrarningunaforma de obtener la claveprivadano cifrada de una claveprivada cifrada del clientetezos.
Heencontrado unaforma de usartezbox. Importa una claveprivadaen tezbox y luegomuestra la claveprivada. La clave que lemuestranoestáencriptada. Nopuedoimportar una claveprivada cifradaen tezbox quetiene una contraseña 'enblanco',por lo queestemétodonoestá disponibleparamí.
Me han dicho quepuedo usar eztz usando:
Yme han dicho quepuedo usar pytezos usando:
Sinembargo,nopuedoentender cómo hacer quefuncionen las opciones anteriores. Probéelmétodoeztznode.js,pero agradecería unejemplo de cómo haceresto.