Comment Re:The best place to hide a lie (Score 1) 44
Compressed elliptic curve points is not some crazy secret or complex thing to be making up conspiracy theories about. The nature of elliptic curve cryptography is that knowing the curve and the x coordinate, there are literally only two possible y coordinates, and a single bit signals which of the two possible y coordinates to use, allowing you to reduce, say, 512 bits of key coordinate down to 257 (256 for the x, 1 for the y), at a trivial cost to compute y from x before doing the rest of the math.
The only reason this wasn't done automatically in every implementation of elliptic curve cryptography from the beginning is because some idiot at the patent office issued a patent for point compression (that is, one specific case of selecting one of two options with a single bit), and so for a couple of decades free projects didn't want to risk implementing it for fear of patent trolls. The patents have now expired, so people are doing the sensible thing.