B4J Question How can I put a password on sqlite database on B4j?

romario87027

Active Member
Licensed User
Longtime User
I found this on the forum
B4X:
Dim list1 As String
        Dim Buffer(1024) As Byte
        Dim raf As RandomAccessFile
        list1 = ESPCEAN

        raf.Initialize3(Buffer, False)
        raf.WriteEncryptedObject(list1, "password", raf.CurrentPosition) ' Error here
error

java.lang.RuntimeException: java.lang.RuntimeException: java.lang.NoClassDefFoundError: org/bouncycastle/crypto/Digest
 
Upvote 0
Top