2014-03-20 8:08 GMT+00:00 Andreas Schildbach : > On 03/20/2014 03:22 AM, Alex Kotenko wrote: > > Right now, before BIP70, I'm sending BIP21 URI via NFC or QR code, and I > > need to still be able to use it for backwards compatibility. But at the > > same time I want to be able to support BIP70. And also I want to avoid > > using external servers, the concept of my POS is that everything is > > happening between just payer's phone and payee's POS device. This means > > that BIP72 HTTP(S) link inside Bitcoin URI is not suitable for me. > > We could use Bluetooth in the "r" parameter, not unlike we use Bluetooth > in the payment_url. However, since multiple devices could access your > machine at the same time, we need some for of adressibility of different > payment requests. Something like > "bt:- > ​​ > ". ​I guess this would be best option​. I'm also worried about potential QR code capacity, since as I imagine we can encounter device that has your Wallet installed and bluetooth enabled, but no NFC available, so we will have to operate via onscreen QR codes + bluetooth. Hmm, if we're inventing an URI for bluetooth, I'd rather follow existing URI's patterns. BT is strictly point-to-point connection, so BT MAC should be considered as server address, and payment request ID can be considered as request path. Probably "bt:/​" would be more usual and easily understandable. Really I don't think my PoS will now support multiple simultaneous payments, but it's good to have this thing in place for the time I will need it. I wonder how complex it would be to implement HTTP-over-Bluetooth. Not like I'm willing to do that now, but HTTP is well known and proven to be quite good for tasks like this, so in theory it would be handy to have such capacities in here. > > You're also offering an option to include Base43 encoded PR body right > > inside the Bitcoin URI, but in a way that is not backwards compatible > > with BIP21. > > Well, do we need to be compatible? If the dev community decides Base43 > PR QR's (or whatever other self-contained format) is the way to go, we > just implement, roll it out and use it. > My PoS needs to be compatible with BIP21, as when I'm presenting QR code or sending NFC message - I have no way to tell what wallet/phone is ​​on the accepting side, so I have to be compatible to existing widely supported technologies. > I understand your intention behind base43 encoding and noncompatible URI > > - you want to make most possible use of QR codes. But I wonder - did you > > compare this base43 to base64 encoded request in a binary QR code > > format? How much do we actually win in total bytes capacity at a price > > of noncompatibility and increased complexity? > > Alphanumeric QR codes have an alphabet of 45 chars, of which I am using > 43. I skipped Space and '%' because they're not allowed in URIs. When I > invented the Base43 format back in 2011, wanted it to be URI compatible > so we can use the Android intent dispatcher. > > If we let go of the URI requirement, we can use binary QR codes as well. > This means users will always have to manually start their Bitcoin app > first. (Also, there is an implementation issue with the ZXing scanner > I'm using, it returns Strings rather than a byte array so it will choke > on \0 characters.) > > > And also maybe we can extend BIP72 to include encoded payment request in > > the URL directly in a backwards compatible way? > > I took this into consideration. It would be space inefficient. > > The Base58-encoded address from BIP21 forces the QR code into binary > mode. Still you can't encode the payment request extension (probably an > URL parameter) as binary because it needs to stay compatible to the URI > standard (RFC 3986). You could use one of the Base64 variants for the PR > in this case, but still it would be inefficient. ​Well, yes, it would be less efficient than base43. But did you calculate how much less? ​It's a compatible and already widely used way and loosing compatibility needs to have serious reasons, so would be great to know exact figures here. I can find out base64 size, but I don't have a working base43 implementation (since the only existing is in Java, and I don't speak it). Can you give me a sample uncompressed PR file of moderate size and a base43 encoded version of it? And I'll convert it into base64 and compare. ------------------------------------------------------------------------------ > Learn Graph Databases - Download FREE O'Reilly Book > "Graph Databases" is the definitive new guide to graph databases and their > applications. Written by three acclaimed leaders in the field, > this first edition is now available. Download your free book today! > http://p.sf.net/sfu/13534_NeoTech > _______________________________________________ > Bitcoin-development mailing list > Bitcoin-development@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/bitcoin-development >