Bitcoin Forum
May 12, 2024, 01:03:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 »
1  Bitcoin / Bitcoin Technical Support / Re: Public key cryptography encryption possible with RIPEMD160? on: January 11, 2016, 02:37:00 PM
Is it possible to encrypt a message to a public key and have it be only decrypt-able by the person that owns that bitcoin address?

Yes, but it is generally a bad idea.


Could you elaborate on the potential security risks this may present?
2  Bitcoin / Bitcoin Technical Support / Public key cryptography encryption possible with RIPEMD160? on: January 11, 2016, 04:57:37 AM
Is it possible to encrypt a message to a public key and have it be only decrypt-able by the person that owns that bitcoin address? What about multiple addresses like PGP? Any way for someone to use the RIPEMD160 hash of their public key to encrypt the message (assuming the recipient has access to the private key?)
3  Bitcoin / Development & Technical Discussion / Re: Suggestion: Button that check/uncheck "send this transaction anonymously" on: January 06, 2016, 10:47:30 PM
If you want 'anonymity', you have to use Tor like everyone else.
4  Bitcoin / Project Development / Re: Need funding on: December 17, 2015, 04:02:14 PM
Here's a tip: Skip all of the "Evolutionary, next generation, etc etc stuff when pitching your idea. Buzz words aren't what most investors want to hear.
5  Bitcoin / Development & Technical Discussion / Re: Blocksize needs to be increased now. on: December 17, 2015, 02:47:41 PM
We need more nodes, and larger blocks. But not one without the other.
6  Bitcoin / Bitcoin Discussion / Re: Satoshi returns, says he's not Craig wright on: December 17, 2015, 03:44:27 AM
My concern is that every time something from satoshi's vistomail comes out, everyone is more concerned with the author of the message, instead of the content of the message.

Typical.
7  Bitcoin / Development & Technical Discussion / Making a blockchain verification program on: December 16, 2015, 06:39:39 AM
How trivial is it to make a program that interacts with a local bitcoin node, through a GUI, that would listen for a transaction that proves ownership of a private key (in order to allow access to an account, or permissions to do certain things) by requiring a transaction broadcast from a specific public key/hash ?

Would an API like blockchain's make this easier?

Thanks!
8  Bitcoin / Development & Technical Discussion / Re: Is it possible to import a private key offline ? on: December 15, 2015, 03:38:51 PM
Danny comes in for the dunk!

Thanks Danny
9  Bitcoin / Development & Technical Discussion / Re: Is it possible to import a private key offline ? on: December 15, 2015, 10:08:14 AM
The network "knows".

When you "send" coins, you're actually just changing the ownership of a previous input, by signing a transaction with your private key and creating/broadcasting an output.
10  Bitcoin / Development & Technical Discussion / Re: Blocksize needs to be increased now. on: December 14, 2015, 08:12:31 AM
Segregated non solution bandaid solution is not solution developer overhead.
11  Economy / Service Discussion / Re: Google Play Suspending games that give out Bitcoins! on: December 14, 2015, 07:30:50 AM
I don't understand how this is any different than games incentivizing a freemium model by awarding players diamonds, coins, or whatever, while charging them to buy these in order to speed up an upgrade or building a something.
12  Alternate cryptocurrencies / Altcoin Discussion / Risk of starting an altcoin on: December 14, 2015, 07:17:26 AM
So I was thinking, if someone were to create yet another altcoin using SHA256 as the hashing algorithm, and the coins ended up being worth something before the hash power was high enough to secure the network from a 51% attack, what exactly would you be able to do with, say, 75% of the hashing power?

Choose which transactions go through, and do not. But what about the ability to double spend?

Thanks!
13  Bitcoin / Development & Technical Discussion / Re: Soft Fork to Increase the 21M Limit? on: December 13, 2015, 03:41:29 AM
It is my understanding that SW is not a bad thing, however, as a soft fork shoved into the coinbase, it is messy.

To have my support it would have to be a hard forking implementation, and if it received consensus, why can't we pass an increase in block size along with it?

This is adding complexity to bitcoin, and overhead for developers.
14  Economy / Speculation / Re: $470 -> $420 Starting to crash? Or short term adjustment? on: December 12, 2015, 06:36:57 AM
Can't go down to much past 400. Have you seen the difficulty? Its going crazy and miners cant fine for free. They add hash power with the intention of selling for the price at the time that they added the GH/s. I think what we're seeing is organic upward pressure, increased positive news coverage, and amongst the financial community at that; those guys have money, right?.

Coupled with the fact that its's becoming more and more expensive to mine for a profit, especially since the halving is coming up.

Brace for launch long term (and great volatility 2016).
This is exactly what was said at $800 in 2014.

Well, this isn't exactly 2014. But, It was my understanding at the time that Gox took the price down with it. In the week before Gox went down it had the lowest price out of all the exchanges and that caused fud because it was normally the leading exchange in both price and volume. Feb 8th is when news of bankruptcy was official and the price was downwards decent from there until now
15  Economy / Speculation / Re: $470 -> $420 Starting to crash? Or short term adjustment? on: December 12, 2015, 05:30:39 AM
Can't go down to much past 400. Have you seen the difficulty? Its going crazy and miners cant fine for free. They add hash power with the intention of selling for the price at the time that they added the GH/s. I think what we're seeing is organic upward pressure, increased positive news coverage, and amongst the financial community at that; those guys have money, right?.

Coupled with the fact that its's becoming more and more expensive to mine for a profit, especially since the halving is coming up.

Brace for launch long term (and great volatility 2016).
16  Economy / Speculation / Re: 10 BTC. Will I be a millionaire by 2030? on: December 11, 2015, 05:19:23 AM
Here's a basic rule if you plan on holding your coins in order to become incredibly wealthy.

Don't ever "cash out". That is, convert the coins into fiat currency in order to make them more liquid.

Wait until you're able to spend them on everything, from insurance, to property, to groceries and etc. This is when their value will be realized by the world.
17  Bitcoin / Bitcoin Technical Support / API Creation to interact with Bitcoin node on: December 10, 2015, 10:42:19 AM
Hello All,

I am interested in creating an API to interact with a bitcoin node to send and retrieve OP_RETURN transactions for the purpose of putting data into the blockchain as well as pulling the data from the blockchain

The process I had in mind went something like this: Insert text string, make string into variable(n),  convert variable to hex(x), make hex as a variable within API, push variable to Bitcoin within OP_RETURN script.

and on the other end for interpretation: Pull txid from blockchain containing output script "OP_RETURN" with the data. convert (x) back to (n).. (HEX TO STRING) and display the original text string.

I assume the calls would be data.push and data.pull respectively.

If I want to interact with a Bitcoin node, would the most convenient(easy) language to program the API in be Node.js?

also, How do I go about creating and issuing API Keys? 

I guess more questions to come, thanks for your help on this cool project Smiley Does anyone think this would be difficult?
18  Bitcoin / Project Development / Re: API Creation to interact with Bitcoin node on: December 10, 2015, 10:35:18 AM
As a matter of fact,

Is BitcoinJ even the easiest, best way to do something like this, and if so, is Node.js still a viable way to implement the process I just described?

Is it possible to just use Bitcoin-cli to process the calls from the API assuming it's written in Node.js?
19  Bitcoin / Project Development / API Creation to interact with BitcoinJ node on: December 10, 2015, 10:29:34 AM
Hello All,

I am interested in creating an API to interact with a bitcoinj node to send and retrieve OP_RETURN transactions for the purpose of putting data into the blockchain.

The process I had in mind went something like this Insert text string, make string into variable(n),  convert variable to hex(x), make hex as a variable within API, push variable to BitcoinJ within OP_RETURN script.

and on the other end for interpretation: Pull txid from blockchain containing output script "OP_RETURN" with the data. convert (x) back to (n).. (HEX TO STRING) and display the original text string.

I assume the calls would be data.push and data.pull respectively.

If I want to interact with a BitcoinJ node, would the most convenient language to program the API in be Node.js?

also, How do I go about creating and issuing API Keys? 

I guess more questions to come, thanks for your help on this cool project Smiley Does anyone think this would be difficult?
20  Bitcoin / Development & Technical Discussion / Re: Fees for full nodes? on: December 10, 2015, 10:14:54 AM
Can you help me understand how it is possible to produce empty blocks, or what the incentive would even be to do so, when there are still unconfirmed transactions in the mempool?
Pages: [1] 2 3 4 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!