Conversation

Welp. It’s the crypto bug of the year. Mark it down for April. Java 15-18 ECDSA doesn’t sanity check that the random x coordinate and signature proof are nonzero; a (0,0) signature validates any message. Breaks JWT, SAML, &c.
36
2,531
Android itself doesn't use the JVM or the OpenJDK cryptography backend. It uses OpenJDK for the SDK including compiling Java to bytecode with javac, which it then compiles to Dalvik bytecode. Android SDK works with OpenJDK 18 as long as source/target language is set to <= 12.
1
5
Targeting Java 11 does not mean the app depends on the OS supporting Java 11. SDK will convert it to bytecode using the latest Dalvik bytecode features available in the minimum API level set by the app. Using lambdas doesn't mean it requires that the OS supports lambdas, etc.
1