B4A Library [B4X] KVS - KeyValueStore library - Erel    Jul 21, 2021   (29 reactions) A key / value persistent store. The data is serialized using B4XSerializator and is stored in an internal database. The database can be shared between B4A, B4i and B4J. Using KVS is similar to using a Map. You initialize it once and then you can put or get items with Put, Get or GetDefault methods. B4i Tutorial B4i Change Log (versions history) - Erel    Dec 04, 2024   (1 reaction) V1.50 - December 23, 2014: https://www.b4x.com/android/forum/threads/b4i-v1-50-has-been-released.48537/ This version adds support for push notifications as well as other improvements: Debugger memory handling was rewritten to avoid retaining unnecessary objects. This is very important as it can le B4i Library iEncryption library - Erel    Feb 07, 2021   (3 reactions) This library supports:
- Generating cryptographically secure random values.
- Hash calculations (message digest)
- Encryption and decryption
Cipher.Encrypt / Decrypt are simple methods that you should use to securely encrypt or decrypt data unless you need to work with other systems. Encrypt2 and D B4i Question [SOLVED] B4XEncryption to iEncryption: Error decoding data as string. - Erel (first post)    Dec 01, 2024 Can you reproduce it in a small project? Without the database. Pass the string directly. B4i Question Hi, After several days using my new build id, and I started having this inconvenience which makes me - Erel (first post)    Nov 27, 2019   (1 reaction) Where does Encryption come from? The library name is iEncryption. B4i Library Subscribe to B4i libraries updates - Erel (first post)    Jan 06, 2015   (1 reaction) iEncryption v1.02 - Fixes a bug related to 32 bit devices:
https://www.b4x.-to-internal-libraries.48179/#post-304890 B4i Question iEncryption AES noPadding Option - Erel (first post)    Oct 13, 2020   (1 reaction) Have you tried:
Dim iOption As Int = C.OPTION_ECBMode
? B4i Question Encryption / iEncryption - toro1950    Aug 16, 2024 Sub DecryptAES(strDataToDecrypt As String, strKey As String) As String
Dim SU As StringUtils
Dim kg As KeyGenerator
Dim C As Cipher
Dim md As MessageDigest
Dim Decrypted() As Byte
kg.Initialize("AES")
kg.KeyFromBytes(md.GetMessageDigest(strKey.GetBytes("UTF8"), "MD5"))
B4i Question AES encryption with salt and iv - aeric (first post)    Jul 11, 2023 Check the last post I shared in post #4.
In B4i, you should use iEncryption library.
In B4A, use Agraham's Encryption library. B4i Question Using B4XAES Lib - Erel (first post)    Sep 19, 2022   (1 reaction) I'm not familiar with this library implementation but you can use (j)B4XEncryption, iEncryption. I think that the library you mentioned actually wraps these libraries.
https://www.b4x..48177/#content Page: 1   2   3   4   5   6   7   Powered by ColBERT |