-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recovering BIP38 password without having the address #50
Comments
Hi , What about known password ,but 6Pn******************* recovery need. Do you have a plan such options in future ? |
If you mean a damaged string (eg. missing some characters) there already is an option for it under Missing Base58. |
I know password but my photo bip38 private key i lost. I am trying find . I know for sure only 6Pn...........
Also I know cfrm38 full 75 characters and try to learn more follow you. I know public key , rmd160 , password
…________________________________
From: Coding Enthusiast ***@***.***>
Sent: April 24, 2022 5:24 AM
To: Coding-Enthusiast/FinderOuter ***@***.***>
Cc: malcamal ***@***.***>; Comment ***@***.***>
Subject: Re: [Coding-Enthusiast/FinderOuter] Recovering BIP38 password without having the address (Issue #50)
Hi , What about known password ,but 6Pn******************* recovery need. Do you have a plan such options in future ?
If you mean a damaged string (eg. missing some characters) there already is an option for it under Missing Base58.
—
Reply to this email directly, view it on GitHub<#50 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGEPUU6TTSIEGJOHGFR2MNTVGUHMNANCNFSM5N4ZOP5Q>.
You are receiving this because you commented.Message ID: ***@***.***>
|
There are exactly 58 characters in a BIP38 encrypted key string. Realistically you need to know at least 50 of them with the position of the remaining missing digits to be able to recover it. |
hello, i have an encrypted private key but i don't know any details of the BIP38 password. is it possible to find it thanks to your software? I have the encrypted private key and the public wallet |
Hello. You need to know something about the password to be able to recover it, at the very least the length of it. |
Someone has hacked multiple accounts of mine. |
Hi I have my private key and public but I lost my decoding phrase how can I find it |
If you have your private key just import it into a new wallet and you will recover your funds. |
In which wallet |
Bitcoin Core only needs the privkey. |
It don't have any import options |
What doesn't ? Bitcoin Core ? |
Yes ,say that it don't support |
In Bitcoin Core, open the console window and type - importprivkey |
Since the BIP38 string already contains an address hash, recovering without the address itself is technically possible but it would add 1x Base58 encoding and 2x SHA256 hash and our
IConverter
implementations don't have that option yet. The encoding part has to be optimized otherwise the speed could decrease significantly.This feature is postponed until there is either demand for it or version 1.0 is about to be released.
The text was updated successfully, but these errors were encountered: