Android Question SOCKET TLS SUPPORT

victormedranop

Well-Known Member
Licensed User
Longtime User
hi, I am trying to using SSL but I need to know what type of cert support.
my code with inputstream. I am using self sing and own authority. all certificate and ca root have been installed. there is no password on the certificate.
in the device.

B4X:
 Dim in As InputStream = File.OpenInput(File.DirAssets, "test_kiosk.crt")
 so.InitializeSSL("so", in, "")
 in.Close

try with p12, cr files but always que the same error

java.io.IOException: Wrong version of key store.
 
Top