public key

  1. KMatle

    Android Code Snippet [B4x] Generate RSA private/public key in php and prepare it to use in B4x

    Sometimes it makes sense to generate pricat/public key pairs for clients on the server side by code. Here's an example how to do this in php (OpenSSL must be installed as it usually is): $keys = openssl_pkey_new(array("private_key_bits" => $4096,"private_key_type" => OPENSSL_KEYTYPE_RSA))...
  2. carlos7000

    Android Question Private and Public key cryptography

    Hi! I have been looking in the forum for an example that uses a public key encryption system and private key. The closest I've been is with this post. https://www.b4x.com/android/forum/threads/base64-and-encryption-library.6839/#post-69584 In the example, the Keygenerator generates a key and...
Top