Bitcoin Forum
May 23, 2024, 02:58:26 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 »
421  Local / Off-Topic (Deutsch) / SUCHE VServer für Tor Relay / Exit Node on: August 21, 2015, 01:14:55 PM
Hallo,

Kennt jemand einen guten und BILLIGEN Anbieter für VServer mit viel Traffic (>= 2TB/Monat)?

Hab nen VServer gemietet für 1€ pro Monat. (256mb ram, 1 Core, 5tb Traffic)
Hat vollkommen gereicht für einen Tor Server.

Das Problem war nur, er wurde nach einer Woche gesperrt werden: Abuse: Tor-Exit-Server.

Bei Hetzner gibt es ja erst ab 6,9€/Monat VServer...
422  Local / Mining (Deutsch) / Re: Bitcoin Lotto on: August 12, 2015, 09:24:56 PM
Was bedeutete eigentlich bestshare

{"hashrate1m": "416G", "hashrate5m": "343G", "hashrate1hr": "310G", "hashrate1d": "45.8G", "lastupdate": 1439408988, "bestshare": 925105.78459624329}

Der höchste Share den du abgeliefert hast, hatte eine Difficulty von 925 tausend. Wäre die Bitcoin difficulty unter 925,000 hättest du gewonnen und einen Block gefunden Wink
Da die Difficulty aber derzeit bei etwa 53 Milliarden ist, brauchst du auch einen bestShare von mindestens 53 Milliarden.
423  Bitcoin / Bitcoin Technical Support / Re: C# compute public key from private key, very slow, ~10Keys/s on: August 02, 2015, 04:47:29 PM
Yeah sure I would use multithreading, but the only pc who is running 24/7 is a Laptop with dual-core xD

Not doing it because of the money. I know that the time I would spend on this project is not worth, if you only see the money as output ^^

Wow ok "rewriting" the ECDSA is to deep for me I think.

Ok then I will write the bitcoind first, to get new transactions. I think this is hard enough for me.

Thx for your info! Cheesy
424  Bitcoin / Bitcoin Technical Support / Re: C# compute public key from private key, very slow, ~10Keys/s on: August 02, 2015, 12:16:05 PM
Code:
ECPoint dd = point.Multiply(Db);
In ECDSA math, it's required to implement the multiply feature by repeatedly doing point additions and point doublings. The other reason of the slow down in your code you experience is the modular inverse operation which is called inside the Multiply() function once at least.

When you look deeper in the code of "vanitygen", you'll see vanitygen does a single point multiplication operation then just one point addition for each candidate in the current batch. The sparly documented OpenSSL function EC_POINTs_MAKE_AFFINE is also utilized by vanitygen which tells OpenSSL to apply the expensive modular inverse on the whole batch at once before vanitygen starts to extract the public keys using EC_POINT_point2oct.

What are you trying to achieve?

Ok, I thought that vanitygen have a trick ^^

I wanted to build a big Brainwallet Database. Get a big password list, hash them SH256 and take this as priv. Key.
Then I want to see which are ever used, so I need the public key.
As same as http://pastebin.com/s29kk2bb does.

He have a Database with 17.000.000 entries. And if I also want to build this, it would take about 1.700.000s -> about 20 Days.
So I thought there is likely a faster way to build this.
425  Bitcoin / Bitcoin Technical Support / C# compute public key from private key, very slow, ~10Keys/s on: August 02, 2015, 06:26:39 AM
Hallo out there,

I tried to compute the public key from a private key in a C# programm.
Lets say i have the priv key: 26760d07c7b06da3ac7d27946b4853e0665c50e0a8b705269b2cfd48f061de2b
so the public key would be: 1A9yKFpmH1GFFeLLv2XGhP41BKCFgRgykN

I was able to compute it with Bitcoin Address Utility (https://en.bitcoin.it/wiki/Bitcoin_Address_Utility).
But my issue is that this way is VERY slow.

I make a for loop and compute it 100 times and it takes 10s! -> 10 Keys/s...

So is there a way to compute it much faster in C# ?

Here is my loop code:
Code:
                DateTime start = DateTime.Now;
                for (int i = 0; i < 100; i++) {
                    KeyPair kp = new KeyPair(txtPrivHex.Text, compressed: compressToolStripMenuItem.Checked);
                    string pubkey = kp.AddressBase58;
                }
                double elapsedsecs = (DateTime.Now - start).TotalSeconds;

I found the command which takes 100ms:
Code:
            Org.BouncyCastle.Math.BigInteger Db = new Org.BouncyCastle.Math.BigInteger(1, _privKey);
            ECPoint dd = point.Multiply(Db);

When i look to vanitygen, they are able to compute about 1.000.000 Keys/s without problems...
So i think they are compute the public key another way?

Would be happy to have a solution Smiley
426  Local / Anfänger und Hilfe / Re: C# Public Key von Private Key VERY SLOW on: August 01, 2015, 06:32:15 PM
Hab den Code nochmals genau untersucht und die Operation gefunden, die so lange braucht.

Ist die Umrechnung vom Private Key zum Public Key mit den "komischen" Elliptic Curves....
Kann es sein das die Library(Org.BouncyCastle) so langsam ist ? :/

Soweit ich das System von Bitcoin verstanden habe, gibt es keinen Ausweg aus dieser Operation ...?

Folgender Code braucht 100ms:

Code:
            Org.BouncyCastle.Math.BigInteger Db = new Org.BouncyCastle.Math.BigInteger(1, _privKey);
            ECPoint dd = point.Multiply(Db);
427  Local / Anfänger und Hilfe / C# Public Key von Private Key VERY SLOW on: August 01, 2015, 05:51:06 PM
Hallo zusammen,

ich versuche derzeit aus einem private key den dazugehörigen public key zu errechnen.
z.b.: priv. key: 26760d07c7b06da3ac7d27946b4853e0665c50e0a8b705269b2cfd48f061de2b  -> 1A9yKFpmH1GFFeLLv2XGhP41BKCFgRgykN
Dazu habe ich mir den Sourcecode von Bitcoin Address Utility (https://en.bitcoin.it/wiki/Bitcoin_Address_Utility) heruntergeladen.

Hab im Sourcecode die Stelle gefunden, an welcher der Public Key in die Textbox geschrieben wird und zum Test mal 100 Mal durchlaufen lassen.

Nun ist mein Problem, dass es SEHR lange dauert... 100 mal generieren -> 10s -> ca 10 Keys/s
Jemand eine Idee warum das so lange dauert ?

Wenn ich mir vanitygen anschaue, die erstellt ja ca 1 Million pro Sekunde.

Gib es eine schnellere Möglichkeit den public key mit C# zum rechnen ?

Hier mein Testcode:
Code:
                DateTime start = DateTime.Now;
                for (int i = 0; i < 100; i++) {
                    KeyPair kp = new KeyPair(txtPrivHex.Text, compressed: compressToolStripMenuItem.Checked);
                    string pubkey = kp.AddressBase58;
                }
                double elapsedsecs = (DateTime.Now - start).TotalSeconds;

EDIT: Topic im englischen Bereich:
https://bitcointalk.org/index.php?topic=1141038.0
428  Local / Mining (Deutsch) / Re: Mehr Bitcoins mit P2Pool on: July 14, 2015, 04:09:40 PM
Komme ich mit meinen "mageren" 60GH/s" überhaupt in den Genuß einer Auszahlung?

Denke schon.
Auf deiner Stat seite steht folgendes:
Local rate: 62.9GH/s (2.8% DOA) Expected time to share: 2.9 days

=> Im Mittel solltest du jede 3 Tage einen Share in die P2Pool "Blockchain" errechnen. Und wird dann ein Block gefunden, bekommst du eine Auszahlung.
Also ich bin zuversichtlich Wink

Hast halt wahrscheinlich eine große Varianz, sprich die Auszahlungshöhe pro gefundenem Block wird bei dir sehr unterschiedlich sein. Mal mehr mal weniger. Einfach ausprobieren.

429  Local / Mining (Deutsch) / Re: Mehr Bitcoins mit P2Pool on: July 10, 2015, 11:36:22 AM
hey, auch wenn es etwas "leichenschändung" ist. Meine Frage:
Gibt es eine Übersicht der gefunden Blöcke von P2Pool?
http://p2pool.info/
scheint mir nicht aktuell, oder ist es wirklich schon 3 Monate her, dass etwas gefunden wurde?...

Der Letzte Block wurde vor ca. 9h gefunden.

Auf die schnelle habe ich diese Übersicht von Blockchain.info gefunden:
https://blockchain.info/de/blocks/P2Pool
430  Local / Mining (Deutsch) / Re: Mit einem Mining Projekt starten und dazu ein paar Fragen.... on: July 04, 2015, 09:29:24 AM
Ich bin beim Antpool, weil es eine stetige Ausschüttung ohne große Wartezeiten gibt und die Ausschüttung die Rechenleistung meiner Miner immer etwas übertrifft.

Welche Gründe gibt es den Antpool nicht zu nehmen btw. welcher wäre besser?

Die beste Ausschüttung hast du sicher mit P2Pool, da du hier keine Gebüren zahlst und die vollen Transaktionsgebüren aufgeteilt werden.
Und du bekommst deine Bitcoins nach jedem gefunden Block, also ca. jeden Tag.

Und bei Eligius bekomme ich meine Bitcoins nach ca. 3 Tagen mit 1TH/s.
431  Local / Mining (Deutsch) / Re: Mit einem Mining Projekt starten und dazu ein paar Fragen.... on: July 02, 2015, 09:42:32 PM
Hab ich auch gerade gesehen. Wow...
Also ich bin seit 2 Tagen beim Antpool. Aber ich glaube das meine Hardware es nicht ist  Grin

Da hat jemand ordentlich Miner angeschlossen...

Was für Gründe gibt es, sich dem größen Pool anzuschließen ? :/

Hab schon Eligius ausprobiert, und da hast du alles was du brauchst?

Jetzt hab ich zu P2Pool gewechselt, um das eigentliche Grundprinzip des Bitcoins zu stützen, Dezentralität.
432  Local / Off-Topic (Deutsch) / Re: Python Windows Entwicklungsumgebung Empfehlung? on: July 01, 2015, 08:00:42 PM
Huhey,

Geany sollte diesen Anforderungen recht werden. Mir sind die meisten IDEs zu überladen, wer will sich vor dem Projekt nochmal in eine IDE einlesen. Ansonsten mein Liebling für alles was anfällt, "Sublime". Mit Plugins wird dieser Editor so wie du ihn brauchst.

Vielen Dank für die schnelle Antwort, bin schon am testen, Geany schaut vielversprechend aus Cheesy
433  Local / Off-Topic (Deutsch) / Python Windows Entwicklungsumgebung Empfehlung? on: July 01, 2015, 07:32:14 PM
Hallo,

kann mir vielleicht jemand eine gute Entwicklungsumgebung für Python empfehlen?
Mir wäre Code Completion und inLine Debugging wichtig.

Hat jemand schon Eclipse mit Plugin probiert?
434  Local / Anfänger und Hilfe / Re: Bitcoin Difficulty on: June 18, 2015, 06:21:08 PM
Das die die Hashrate bezogen auf die letzen 504 Blöcke.
Ist jedenfalls meine Vermutung ^^
435  Other / Off-topic / Re: What was BTC price? on: June 09, 2015, 01:24:05 PM
I looked to my Google search history and found that I first searched for bitcoins in Oct. 2011.
But there I was 17, was going to school and had no money^^

I also searched how to mine bitcoins, but I can remember that I was not able to, because it was to complex. So I stopped looking for.

Next time I heard about bitcoins was in April 2013. There I bought my first Bitcoin @ 200€ (on top of the bubble).

After few days the price fall to 70€, and I was happy that I could buy even more coins with less money xD
436  Local / Biete / Re: [B] 3D-Druckservice on: June 04, 2015, 12:07:33 PM
Habe mein Bitcoindruck erhalten Smiley
Vielen Dank! Sehr sauber! Respect!
437  Local / Projektentwicklung / Re: RPI 1 B (512MB RAM) - Bitcoin Full Node Betrieb < 4 Watt on: May 30, 2015, 09:17:42 AM
checke die config.php im ordner php.

gibt es die datei ? wenn nicht kopiere die sample datei auf config.php und setzt deine einstellungen wie rpc user und passwort.

wenn es die datei gibt prüfe die syntax, wie z.B. Beistriche, oder Hochkommas.

Das war bei mir zumindest der Grund für eine weiße Seite Wink

Good luck!
438  Local / Altcoins (Deutsch) / Re: Hot Coins on: May 28, 2015, 08:06:56 PM
Indeamfall gehen zurzeit alle Altcoins durch die Decke ^^

Vertcoin ist innerhalb von 10 Tagen ums 10-fache gestiegen und keiner weiß warum..

439  Local / Suche / Re: [S] Pool-Abdeckplane ~4m on: May 28, 2015, 02:01:07 PM
besorg Dir ein paar Gebläse und lass es im Pool blubbern.

 Roll Eyes wirklich gute idee, meld mich falls ich es umgesetzt habe xDD
440  Local / Suche / Re: [S] Pool-Abdeckplane ~4m on: May 28, 2015, 06:31:49 AM
Die obere Reihe muss mit vollen Flaschen befüllt werden. Der Grill in der Mitte und ein Sonnenschirm fehlt auch noch. Dann wäre der Pool perfekt. Ok für die Mädels müssen noch nen paar Radler rein, sonst lockt man die nicht in den Pool.

Haha, das kommt alles noch Wink nur mit dem Sonnenschirm bin ich nicht einverstanden ^^
Unsere Mädels hier trinken auch Bier Wink
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!