Bitcoin Forum
May 24, 2024, 06:20:30 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 [35] 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 »
681  Bitcoin / Electrum / Re: Minimal Electrum builds for Windows XP & 7 on: October 09, 2012, 07:41:25 PM
Is there a way to copy the signed message to the clipboard fast?  It's annoying to select it.

Not that I know of, as of the current release, but I could provide a quick/unofficial patch that automatically copies the signed message to the clipboard, if you're interested.
682  Other / Beginners & Help / Re: How to securely spend coins from a compressed offline private key? on: October 09, 2012, 04:34:37 AM
There is a new patch that adds support for importing compressed key pairs into electrum. However it hasn't been fully reviewed yet. See here: https://github.com/spesmilo/electrum/pull/28

683  Other / MultiBit / Re: MultiBit on: October 08, 2012, 06:57:34 PM
Where to find the BETA for mac?

And there is another problem.
If I send BTC to another address, there are only some BTC left to send, why?

Look at this screen:


Deposit 720 BTC ...
send out 15.8****

Available only 0.0045, why?

I'm not sure, but I think you need to wait for a couple of confirmations for the rest to become available.
684  Bitcoin / Project Development / Re: [ANN] 2^256 Deep Space Vagabond on: October 08, 2012, 06:07:25 PM
Hmmm... Got some reports that it's still running slower than it should on Vista/7 (even though it's no longer freezing).

Running it on an XP system results in significantly faster response times.
Not sure why that is - still investigating.

[EDIT]

Version 1.43 is ready!

Fixed a few GUI bugs, and it should be noticeably faster on Vista and 7.
685  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator/miner [v0.21] on: October 08, 2012, 05:45:30 PM
@samr7:

when searching for a vanity pattern, it occured to me that you could match the compressed keys for each generated secret as well. That would double the efficiency/expected ETA of pretty much every query, wouldn't it? Well, perhaps not double, but at least greatly speed it up...

Or am I just saying nonsense again?
686  Bitcoin / Development & Technical Discussion / Re: Physical device to generate public/private key pairs on: October 07, 2012, 09:21:40 PM
An app could do it...and there's lots of ways to do it on a computer...My thoughts were more along the line of security...

Even a non-connecting physical device doesn't offer more security per se.
If it's a physical device, it's usually closed source software, which means
a malicious vendor could program it to "generate" keys that are not really random, and that could be harvested at later time...

I suppose you could easily use my little "Deep Space Vagabond" application on an offline, freshly installed computer, to generate new addresses at the click of a button. See link in my signature. Source code to the very first version (which was a command-line Python script) is freely available to all, while source code for later versions is available to donators.

Alternatively if you're comfortable running Python command-line scripts, someone (I need to remember their name) made a wonderful little script doing just what you want. You could set up a Python environment on an offline computer, and then generate your keys using that script. If you're interested I can you look it up and post it here for you.

One last option is to use the fantastic vanitygen command-line tool directly. It is actually what my app relies on for generating addresses.

EDIT: at first, I didn't realize you were looking to build such a device yourself - sp my post is mostly irrelevant
687  Other / Off-topic / Re: Funny Animated gifs on: October 07, 2012, 11:06:17 AM
Animated or not?

688  Other / Off-topic / Re: Satoshi Nakamoto == Benjamin Fulford ? on: October 07, 2012, 10:14:09 AM
The only thing what I know is that Satoshi is living in Swizerland near Geneva.

Why?

Also why did you delete your post immediately?
689  Bitcoin / Development & Technical Discussion / Re: How many public base58 addresses exist for a given private key? on: October 07, 2012, 05:20:54 AM
Thanks Pieter. Is it easy to compute the uncompressed equivalent public address from:

- the compressed public address
+ the private key expressed in WIF compressed format

- the compressed public address alone?
690  Bitcoin / Electrum / Re: Minimal Electrum builds for Windows XP & 7 on: October 06, 2012, 09:27:37 PM
Is there any way to sign a message with an address using electrum?  I want to quit using the satoshi client completely.

Sure, here's a step-by-step guide I once compiled for this:


A. To sign a message:

1. Hold SHIFT down while launching Electrum
2. (Only if the address is external and must be imported)
    Import your address by typing:
    e -o import 1YourBitcoinAddress:5YourPrivateKey
3. In the virtual console that has appeared, type:
    e signmessage 1YourBitcoinAddress "MessageLine1\nMessageLine2\nMessageLine3"
  
    This should output the base64-encoded cryptographic signature.    


B. To verify a signed message:

1. Hold SHIFT down while launching Electrum
2. In the virtual console that has appeared, type:
    e verifymessage 1YourBitcoinAddress "TheSignature" "MessageLine1\nMessageLine2\nMessageLine3"    
     (Be sure to include the quotes.)

   If successful, this must return True.  


Note that all of the above can be performed on a non-networked computer, if preferred.

PS: hopefully in a future release, these commands will be accessible from the graphical interface. For now, they are only available through the advanced (text-based) console.
691  Bitcoin / Development & Technical Discussion / How many public base58 addresses exist for a given private key? on: October 06, 2012, 08:34:20 PM
TIL that one private key corresponds to more than one public (base58) address.
(Yeah, I admit I'm still a newbie for these things...)


The question is, how many of those public base58 addresses exist for one given private key?

Is the answer 2 (one "regular" and one "compressed") ?

[EDIT] By private key, I mean "32-byte secret', in case that matters.
692  Bitcoin / Electrum / Re: Electrum - Bitcoin client for the common users (friendly and instant) on: October 06, 2012, 07:22:12 PM
Is genjix still involved? I haven't heard from him since the conference. I hope he's OK and will be back to lead this project soon!
693  Bitcoin / Project Development / Re: [ANN] 2^256 Deep Space Vagabond on: October 06, 2012, 08:39:57 AM
Version 1.42 has been released!

- Windows Vista/7 startup freeze fixed
- faster address generation
- Now autoconnects to local ABE server if detected!  (thanks, grimd34th)

694  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator/miner [v0.21] on: October 05, 2012, 10:59:36 AM
Nvm, it was actually just a misunderstanding on my part.

EDIT: wasn't easy, but I found the answer I was looking for here:
 http://sourceforge.net/mailarchive/forum.php?thread_name=CAPg%2BsBhDFCjAn1tRRQhaudtqwsh4vcVbxzm%2BAA2OuFxN71fwUA%40mail.gmail.com&forum_name=bitcoin-development
695  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator/miner [v0.21] on: October 05, 2012, 07:04:28 AM

Hmm perhaps my question wasn't very clear. I'm aware of what you said, what I meant to ask is, does it search within the full (2^256) range of possible private keys or a subset of it. I would have checked the source myself but my C/C++ is a little too rusty...

It picks random starting points within the 256 bit private key space and increments from there.  So yes it considers the entire 256 bit space.

Sorry to insist, but are you sure? How do compressed private keys (introduced in bitcoind/bitcoin-qt 0.6.0) fit in there? From what I've been able to read, vanitygen doesn't support them and they are actually separate from noncompressed keys (ie, can't be expressed as normal uncompressed base58 keys) - so what proportion of the 2^256 search range do they represent? Or am I totally misunderstanding compressed keys?
696  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator/miner [v0.21] on: October 04, 2012, 10:01:17 PM
Which gets me wondering, does Vanitygen search the entire keyspace? (*)
If not, what proportion of the entire keyspace does it search?

(*) What about addresses associated with compressed keys?

The starting point of a phrase search is random, it gets a private key from the openssl rand ecdsa library and starts searching from there, simply incrementing the key. After searching many addresses for a phrase match, it will again get another random private key. The keys searched and returned with a found vanity phrase in the corresponding Bitcoin address can be from anywhere in the range of valid keys, but certainly it cannot "search the entire keyspace", as that would take somewhere just north of the age of the universe.

Hmm perhaps my question wasn't very clear. I'm aware of what you said, what I meant to ask is, does it search within the full (2^256) range of possible private keys or a subset of it. I would have checked the source myself but my C/C++ is a little too rusty...
697  Bitcoin / Wallet software / Re: Best independent client? on: October 03, 2012, 10:17:04 PM
Their code doesn't depend on bitcoind in the classical sense, but as far as I know, they do still depend on
it because they are not full-verifying nodes, so a network without bitcoind nodes to connect to can't operate properly (correct me if I'm wrong).

pynode and ufasoft-coin are full, verifying nodes.  purecoin is too, I think, as is mtve's Perl bitcoin implementation.

The full nodes actually on the network are still 98% reference client (bitcoind).



Thanks for clarifying that.
As for BitcoinJ, I thought I read somewhere that it wasn't a full node at this time but might become one in the future. Can't find that post right now, though...
698  Bitcoin / Electrum / Re: Electrum - Bitcoin client for the common users (friendly and instant) on: October 03, 2012, 08:20:50 PM
Actually Matt has implemented bloom filters in bitcoinj already. It's just pending merge. So you don't need to do any work Jim, just keep up with bitcoinj and at some point you will get this feature "for free".

Once bloom filters are implemented and rolled out across the network, I don't see any reason for Stratum/Electrum-style servers any more. With some more optimization you can theoretically match their efficiency but without any need for a semi-trusted server.

Interesting development on the bitcoinJ front... I'm not qualified to comment on it from a technical point
of view, so I would really like to hear any comments from the experts Smiley

Not sure how technically feasible it is (it would perhaps require some protocol changes and cooperation with bitcoinJ devs), but perhaps it would be nice if Electrum (the client) could eventually get the ability to directly connect to BitcoinJ nodes (in addition to Electrum servers)?

If this is possible, I think it could actually be a good thing for Electrum in the long run, as it would bring a nice solution to the issue of having potentially malicious servers.
699  Bitcoin / Wallet software / Re: Best independent client? on: October 03, 2012, 08:12:17 PM
Correct me if I'm wrong but I believe all clients still depend on bitcoind. That is, the essential part of verifying and storing the blockchain and communicating with other clients is still handled in all clients by this one backend codebase. I may be wrong here as I have not checked all the clients myself.

This is incorrect.

BitcoinJ, pynode and ufasoft-coin do not depend at all on bitcoind.  Other alternate implementations also exist, in varying states of completion (bitcoin-alt, purecoin, ...)


I guess it depends what you mean by "depends on" Smiley

Their code doesn't depend on bitcoind in the classical sense, but as far as I know, they do still depend on
it because they are not full-verifying nodes, so a network without bitcoind nodes to connect to can't operate properly (correct me if I'm wrong).

 
700  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator/miner [v0.21] on: October 03, 2012, 08:00:18 PM
Which gets me wondering, does Vanitygen search the entire keyspace? (*)
If not, what proportion of the entire keyspace does it search?

(*) What about addresses associated with compressed keys?
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 [35] 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!