tjgq | 8 years ago | on: The Coin Flip: A Fundamentally Unfair Proposition? (2009)
tjgq's comments
tjgq | 10 years ago | on: U.S. Drops California Case Against Apple After Accessing iPhone
tjgq | 10 years ago | on: FBI Wants It to Be Impractical to Deploy Strong Encryption Without Key Escrow
The US Constitution hasn't helped prevent the PATRIOT act, or the TSA's unreasonable search powers.
> A huge fraction of all Internet data is sent as base 64. So, base 64 data alone is nothing suspicious.
There's a difference between Base64 that decodes into a harmless cat picture, and Base64 that's apparently random. Unless we make it normal for everyone to have encrypted, random-looking data lying around, the few that choose to have it will be increasingly harassed by the government, even if they're not doing anything wrong.
tjgq | 10 years ago | on: FBI Wants It to Be Impractical to Deploy Strong Encryption Without Key Escrow
I'm sorry, but I don't think pushing encryption down into the underworld is a viable solution to the problem. There's no limit to the bad laws that the government can pass. The only real long-term solution is to recognize encryption as a right, otherwise we'll only keep seeing these repeated attempts to outlaw it.
tjgq | 11 years ago | on: HTTP/2 for TCP/IP Geeks
As for sticking with IPv4 for increased capacity, it depends. Private networks might get away with it for their internal traffic, but no major ISP nowadays will deliberately choose not to route IPv6 for their customers.
tjgq | 11 years ago | on: IPv4 Address Market Takes Off
Another point to consider is that there are things you can do with IPv6 connectivity that are very difficult/costly, or outright impossible, in NATted IPv4 land.
Personally, I'm waiting for the next generation of peer-to-peer protocols that make use of end-to-end IPv6 connectivity instead of hole-punching and proxying through third-parties. (Case study: ever thought how ridiculous it is that in 2015 it's still non-trivial to send a large file to someone over the Internet without using some sort of storage service?)
It's plausible that one of those new applications could end up being the "killer app" for IPv6.
tjgq | 11 years ago | on: IPv4 Address Market Takes Off
Regarding the tracking of specific users: RFC 3041 stateless autoconfiguration (which is deployed at least on Linux and OSX - not sure about Windows) allows a device to switch to a new random IPv6 address within its assigned prefix every few minutes. This mitigates, though it does not eliminate, an attacker's ability to correlate connections originating from the same device over a period of time.
Naturally, all of those addresses will share a common IPv6 prefix. But that is no different from most residential NATs, where all connections are observed from the outside to originate from the same IPv4 address.
Also due to stateless autoconfiguration, guessing the address of a device from the outside is equivalent to finding a needle in a 2^64-straw haystack. It's not impossible, but it takes time and a lot of traffic to do so.
tjgq | 11 years ago | on: IPv4 Address Market Takes Off
tjgq | 11 years ago | on: IPv4 Address Market Takes Off
There seems to be this common misconception that a firewall and a NAT box are the same thing, but they're not. It just happens that most NAT implementations also work as firewalls (though not the other way round).
Even if you don't have a firewall, the odds of someone discovering your IPv6 address by chance (i.e. without you communicating with them first) are incredibly low. Common IPv6 deployment practice is to delegate at least a /56 prefix to each end user, so your device gets an address chosen at random from 2^72 possibilities. You can even hop into a different address every few minutes for added security (some IPv6 stacks do this).
So please don't spread the misconception that IPv6 is somehow less secure than IPv4! :)
tjgq | 11 years ago | on: IPv4 Address Market Takes Off
My honest (though possibly unpopular) opinion is that the incentive should have been given years ago through government intervention, by legally compelling ISPs to provide IPv6 connectivity to their customers. If most of the Internet had been switched to IPv6 by now, no bidding war over IPv4 addresses would need to take place.
Naturally, it's moot to point out what could have been done and wasn't. But I think this illustrates a limitation of market-based incentives: they seem to work well on the short term, but have a tendency to fail on the long one. Slow IPv6 adoption is, in my view, a market failure that should have been corrected through government intervention.
tjgq | 11 years ago | on: IPv4 Address Market Takes Off
You seem to be presenting a false dichotomy; there are plenty of intermediate solutions between the current state of affairs and a laissez-faire market. At the very least, if we're going to set a price on IPv4 addresses, I think it should be set by the RIRs - not by the companies to whom they were allocated. (Remember that RIRs have the right to reclaim addresses that are not being used.)
In other words: my concern is not that IPv4 addresses end up having a price tag on them; that seems inevitable at this point. My concern is that big players might be able to dictate the prices and effectively buy the small ones out of the Internet.
tjgq | 11 years ago | on: IPv4 Address Market Takes Off
This is a honest question. I would like to know how we avoid ending up in a world where a few large companies control all the available IPv4 addresses (which they don't really need) so they can rent them to the rest of us at exhorbitant prices.
IPv6 won't render the problem moot - it's likely that IPv4 addresses will remain a necessity for globally reachable services for years to come, regardless of IPv6 adoption.
tjgq | 11 years ago | on: A website that deletes itself once indexed by Google
tjgq | 11 years ago | on: A website that deletes itself once indexed by Google
tjgq | 11 years ago | on: Firefox Developer Edition 38: 64-bits and more
tjgq | 11 years ago | on: HTTP/2 Approved
tjgq | 11 years ago | on: Show HN: A minimal C runtime for Linux i386 and x86_64 in 87 SLOC of C
register long r10 = a3;
but the register keyword is advisory only (the compiler is free to ignore it) and you cannot specify the exact register you want to be used.Reference: https://gcc.gnu.org/onlinedocs/gcc/Local-Reg-Vars.html
tjgq | 11 years ago | on: Almost all numbers contain the digit “3” [video]
tjgq | 11 years ago | on: OSI: The Internet That Wasn’t (2013)
It's worth noting that NPTv6 is a lot better than NAT, though. For one thing, it operates strictly at the IP level and doesn't muck about with the transport layer. So, for instance, if you want to use a transport other than TCP or UDP, it should be possible - at least in principle - even if you are NPTing to and from ULA space. That's something you haven't been effectively able to do on the Internet for the past 20 years.
tjgq | 11 years ago | on: OSI: The Internet That Wasn’t (2013)
Unfortunately, reality has conspired against this possibility in two ways: NAT boxes, and the fact that transport protocols are implemented in the kernel on most operating systems (hence, an application cannot use its own transport protocol easily).
The deployment of IPv6 is a real chance to, at least, fix the first of these problems. Let's hope it does.