
[Topic Unique] BITCOIN & LITECOIN
[Topic Unique] BITCOIN & LITECOIN
mais merde,tu a quoi qui tourne pour en avoir autant ?
[Topic Unique] BITCOIN & LITECOIN
j'avais un Quad crossfire (ou crossfireX de 5970)
j'ai totalisé dans ma vie plus de 2000Btc je pense, seulement y'a 1ans et demi j'ai gardé 200btc pour un jour comme celui ci ^^ (apres le gros crash)
je pense d'ailleurs garder encore 50btc pour dans 2ans quand le btc sera a 100euro
et oui mon G73 avait a l’époque etait payé par les btc (les premiers vendu a 80cents ($)) quand on a commencé avec poulpi
j'ai totalisé dans ma vie plus de 2000Btc je pense, seulement y'a 1ans et demi j'ai gardé 200btc pour un jour comme celui ci ^^ (apres le gros crash)
je pense d'ailleurs garder encore 50btc pour dans 2ans quand le btc sera a 100euro
et oui mon G73 avait a l’époque etait payé par les btc (les premiers vendu a 80cents ($)) quand on a commencé avec poulpi

- augur1
- Messages : 13167
- Inscription : ven. 12 janv. 2018 17:44
- Localisation : où tout est neuf et tout est sauvage
- Contact :
[Topic Unique] BITCOIN & LITECOIN
Continue de monter légèrement ...
=> http://bitcoincharts.com/markets/mtgoxEUR.html
LAst Trad : 14.6099 € 29.01.2013 17h50
=> http://bitcoincharts.com/markets/mtgoxEUR.html
LAst Trad : 14.6099 € 29.01.2013 17h50
[Topic Unique] BITCOIN & LITECOIN
viContinue de monter légèrement ...
=> http://bitcoincharts.com/markets/mtgoxEUR.html
LAst Trad : 14.6099 € 29.01.2013 17h50


- augur1
- Messages : 13167
- Inscription : ven. 12 janv. 2018 17:44
- Localisation : où tout est neuf et tout est sauvage
- Contact :
[Topic Unique] BITCOIN & LITECOIN
En gros, BitCoin permet la création de clefs SHA ?
[Topic Unique] BITCOIN & LITECOIN
tain 14.6 PWOA
2K BT , ha wé quand meme.
ca t'aurai fait dans les 27K € now
2K BT , ha wé quand meme.
ca t'aurai fait dans les 27K € now


[Topic Unique] BITCOIN & LITECOIN
commencé le 22/02/2011 enfait
enfin un peu avant mais sur compute4cash
qui etait un ring btc qui ne le disait pas et donc tres peu de gain
enfin un peu avant mais sur compute4cash
qui etait un ring btc qui ne le disait pas et donc tres peu de gain

[Topic Unique] BITCOIN & LITECOIN
ou rientain 14.6 PWOA
2K BT , ha wé quand meme.
ca t'aurai fait dans les 27K € now![]()
![]()
oui
je regrrette juste de pas avoir commencé a 0.01cent ($) ou moins ^^

[Topic Unique] BITCOIN & LITECOIN
vien de calculer
1556,822987btc très exactement (j'etais un peu optimiste ^^)
1556,822987btc très exactement (j'etais un peu optimiste ^^)

-
- Messages : 9473
- Inscription : ven. 12 janv. 2018 17:44
[Topic Unique] BITCOIN & LITECOIN
Oh putain, 67Gh/s. Bon, bin on va vite voir comment le cours du Bitcoin subit ça... Dégouté de pas avoir choisi le bon fabricant...
[Topic Unique] BITCOIN & LITECOIN
la c'est achat btc pour bcp, demain encore, ensuite effondrement du cours

- augur1
- Messages : 13167
- Inscription : ven. 12 janv. 2018 17:44
- Localisation : où tout est neuf et tout est sauvage
- Contact :
[Topic Unique] BITCOIN & LITECOIN
²En gros, BitCoin permet la création de clefs SHA ?
[Topic Unique] BITCOIN & LITECOIN
bitcoin utilise le concept de preuve de travail, initialement imaginé pour résoudre le problème du spam, et implémenté par exemple dans le système Hashcash ;
Les algorithmes de hashage sont SHA-256 et RIPEMD-160. Un double hash en SHA-256 est utilisé pour obtenir le hash des blocs et donc la preuve de travail, tandis qu'un SHA-256 suivi d'un RIPMED-160 est utilisé pour construire les adresses bitcoins ;
Les signatures de transactions sont effectuées en utilisant la cryptographie à courbes elliptiques, dite ECDSA. En l'occurrence, la courbe employée est secp256k1 ;
Le logiciel originel écrit par Nakamoto utilise Berkeley DB pour la gestion de ses bases de données ;
Au sein d'un bloc, les transactions sont stockées sous la forme d'un arbre de Merkle ;
La validation des transactions fait appel à un langage de script interne conçu par Nakamoto. Ce langage, volontairement minimaliste et non Turing-complet, doit permettre au logiciel de s'adapter aisément à des évolutions ultérieures et permettre des fonctionnalités avancées comme les Smart contract (en).
de memoire les plus petites possible

[Topic Unique] BITCOIN & LITECOIN
Technical Background x
During mining, your computer runs a cryptographic hashing function (two rounds of SHA256) on what is called a block header. For each new hash, the mining software will use a different number as the random element of the block header, this number is called the nonce. Depending on the nonce and what else is in the block the hashing function will yield a hash which looks like this:
93ef6f358fbb998c60802496863052290d4c63735b7fe5bdaac821de96a53a9a
You can look at this hash as a really long number. (It's a hexadecimal number, meaning the letters A-F are the digits 10-15.) Now to make mining difficult, there is what's called a difficulty target. To create a valid block your miner has to find a hash that is below the difficulty target. So if for example the difficulty target is 1000000000000000000000000000000000000000000000000000000000000000, any number that starts with a zero would be below the target, e.g.:
0787a6fd6e0782f7f8058fbef45f5c17fe89086ad4e78a1520d06505acb4522f
If we lower the target to 0100000000000000000000000000000000000000000000000000000000000000, we now need two zeros in the beginning to be under it:
00db27957bd0ba06a5af9e6c81226d74312a7028cf9a08fa125e49f15cae4979
Because the target is such an unwieldy number with tons of digits, people generally use a simpler number to express the current target. This number is called the mining difficulty. The mining difficulty expresses how much harder the current block is to generate compared to the first block. So a difficulty of 70000 means to generate the current block you have to do 70000 times more work than Satoshi had to do generating the first block. Though be fair though, back then mining was a lot slower and less optimized.
The difficulty changes every 2016 blocks. The network tries to change it such that 2016 blocks at the current global network processing power take about 14 days. That's why, when the network power rises, the difficulty rises as well.
During mining, your computer runs a cryptographic hashing function (two rounds of SHA256) on what is called a block header. For each new hash, the mining software will use a different number as the random element of the block header, this number is called the nonce. Depending on the nonce and what else is in the block the hashing function will yield a hash which looks like this:
93ef6f358fbb998c60802496863052290d4c63735b7fe5bdaac821de96a53a9a
You can look at this hash as a really long number. (It's a hexadecimal number, meaning the letters A-F are the digits 10-15.) Now to make mining difficult, there is what's called a difficulty target. To create a valid block your miner has to find a hash that is below the difficulty target. So if for example the difficulty target is 1000000000000000000000000000000000000000000000000000000000000000, any number that starts with a zero would be below the target, e.g.:
0787a6fd6e0782f7f8058fbef45f5c17fe89086ad4e78a1520d06505acb4522f
If we lower the target to 0100000000000000000000000000000000000000000000000000000000000000, we now need two zeros in the beginning to be under it:
00db27957bd0ba06a5af9e6c81226d74312a7028cf9a08fa125e49f15cae4979
Because the target is such an unwieldy number with tons of digits, people generally use a simpler number to express the current target. This number is called the mining difficulty. The mining difficulty expresses how much harder the current block is to generate compared to the first block. So a difficulty of 70000 means to generate the current block you have to do 70000 times more work than Satoshi had to do generating the first block. Though be fair though, back then mining was a lot slower and less optimized.
The difficulty changes every 2016 blocks. The network tries to change it such that 2016 blocks at the current global network processing power take about 14 days. That's why, when the network power rises, the difficulty rises as well.

- augur1
- Messages : 13167
- Inscription : ven. 12 janv. 2018 17:44
- Localisation : où tout est neuf et tout est sauvage
- Contact :
[Topic Unique] BITCOIN & LITECOIN
Un OUI ou un NON m'aurait suffit 
Il va y avoir une forte demande en clef SHA 256 à partir de mi février 2013 ... d'où à mon avis l'envol des achats et du cours BitCoin, comme un investissement pour ensuite revendre encore plus cher.
++

Il va y avoir une forte demande en clef SHA 256 à partir de mi février 2013 ... d'où à mon avis l'envol des achats et du cours BitCoin, comme un investissement pour ensuite revendre encore plus cher.
++
[Topic Unique] BITCOIN & LITECOIN
ha!
bon j'en garde 50 alors
(nouveau plus haut historique a 15.3€ et 20.77$)
bon j'en garde 50 alors
(nouveau plus haut historique a 15.3€ et 20.77$)

- augur1
- Messages : 13167
- Inscription : ven. 12 janv. 2018 17:44
- Localisation : où tout est neuf et tout est sauvage
- Contact :
[Topic Unique] BITCOIN & LITECOIN
Short story : les offres de Cloud et aux Canadiens.
-
- Messages : 9473
- Inscription : ven. 12 janv. 2018 17:44
[Topic Unique] BITCOIN & LITECOIN
augur: ça calcule des hashs Sha256. Mais ça existe pas les "clés" sha ^^
Sinon j'avais prévu de détourner l'Asic pour calculer des rainbow tables Sha256 et les mettre à dispo sur un site, comme il en existe déjà plusieurs pour le MD5. En passant par le driver ça doit être possible. Je m'étais renseigné avec nos dev et avec un pentester déjà, ils trouvaient ça intéressant (sous réserve de vérifier l'algo utilisé par les Asics).
Bon, vu que j'ai pas d'asic, du coup, le projet tombe à l'eau...
Sinon j'avais prévu de détourner l'Asic pour calculer des rainbow tables Sha256 et les mettre à dispo sur un site, comme il en existe déjà plusieurs pour le MD5. En passant par le driver ça doit être possible. Je m'étais renseigné avec nos dev et avec un pentester déjà, ils trouvaient ça intéressant (sous réserve de vérifier l'algo utilisé par les Asics).
Bon, vu que j'ai pas d'asic, du coup, le projet tombe à l'eau...
-
- Messages : 9473
- Inscription : ven. 12 janv. 2018 17:44
[Topic Unique] BITCOIN & LITECOIN
Bah, y a pas d'infos à extraire, toute la partie cryptographique est bien connue et documentée puisque Bitcoin existe et tourne ^^ A moins que tu parles du firmware ? j'ai vu que ça se bagarrait pas mal là-dessus.