• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. M

    BouncyCastle stopped working on Android 13

    I have a system service running on Android which uses BouncyCastle to create a "secp256k1" KeyPair. This is the code: KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("ECDSA", "BC"); ECGenParameterSpec ecGenParameterSpec = new ECGenParameterSpec("secp256k1"); And before...