B4J Library [server] LetsEncrypt SSL certificates - Erel    Mar 3, 2024   (21 reactions) LetsEncrypt provides SSL certificates for free. The certificates are created and renewed using...
'srvr.AddFilter("/*", "HttpsFilter", False)
End Sub
The LetsEncrypt class... B4J Library ABKeystoreSSL: SSL Certificate generator using Let's Encrypt - alwaysbusy    Nov 8, 2024   (17 reactions) HTTP/2 mode. This is a Let's encrypt limitation.
Also, READ THE LOGS. There is important info in... Encrypt
Sub MakeJKS() As Boolean
Dim Result As Boolean
' needs to be the 'entry point... B4A Library [B4X] B4XEncryption - Erel    Sep 10, 2025   (24 reactions)   tags: B4XEncryption, Security, encrypt, B4A This library allows you to encrypt or decrypt data using the AES encryption method. To prevent...: B4XEncryption - B4A jB4XEncryption - B4J iEncryption - B4i (Encrypt and Decrypt methods) It is simple to use and is cross platform, which means that you can encrypt the data on one platform and decrypt it on a different platform. Usage example: Sub EncryptText(text As String, password As String) As Byte() Dim c As B4XCipher Return c.Encrypt(text.GetBytes("utf8"), password) End Sub Sub... B4A Library Base64 and Encryption library - agraham    Apr 11, 2016   (17 reactions)   tags: Security, Lib algorithm encryption and decryption. Tested symmetric algorithms are DES, Triple DES and AES (Rijndael).
As the Java encryption rountines are all byte array oriented you will need my ByteConverter... B4A Library AES Encrypt/Decrypt (Encryption/Decryption) B4A and B4J library - Peter Simpson    Sep 22, 2020   (33 reactions)   tags: Aes AES library, I created it some time ago for AES Encryption and Decryption of strings. I've been... characters in length
Dim EncryptDecryptString As String = "Peter"
Log($"Encrypted... B4i Library iEncryption library - Erel    Feb 7, 2021   (4 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 Decrypt2 together with GenerateKey give you more options. Encrypt / Decrypt methods are compatible with B4A and B4J B4XEncryption methods: https://www.b4x.com/android/forum/threads/b4xencryption... B4J Library [B4X] B4J/B4A: AES-GCM 256-bit encryption (Optional 128‑bit Salt) - Peter Simpson    Feb 10, 2026   (6 reactions) Hello Everyone, Here is a B4J/B4A AES-GCM Encryption library, I created it for a project. Hopefully... Encryption Standard with Galois/Counter Mode) is a symmetric‑key authenticated encryption algorithm... encryption and a Galois Message Authentication Code (GMAC) to generate an authentication tag, making it ideal for high‑speed, secure applications like network traffic (MACsec) and data‑at‑rest encryption...: Peter Simpson Version: 1.0 AESGCMEncryption AESGCMEncryption AES‑256 GCM encrypted preferences... B4J Library [PyBridge] pyCryptography - Encryption (AES + HMAC) with cryptography via PyBridge - zed    Sep 20, 2025   (5 reactions) This library offers a simple, secure, and powerful solution for encrypting and decrypting sensitive... a secure Fernet key (AES 128 + HMAC) Encrypt: Encrypts a text string with this key Decrypt: Decrypts a previously encrypted string Python-side installation pip install cryptography Example of use: Dim EncryptString As String = "[email protected]" Crypto.Initialize ' Key... & Key) ' Encryption Wait For (Crypto.Encrypt(EncryptString, Key)) Complete (EncryptedData... B4J Library [B4X] B4XAES v2.0 Encryption/Decryption b4xlib (B4A, B4i, B4J) - ThRuST    Jul 4, 2022   (11 reactions) B4XAES b4xlib v2.0 works with B4A, B4i and B4J
Requires:
jB4XEncryption library
StringUtils
This e... B4J Library [B4j] Database encryption - MichalK73    Mar 21, 2025   (7 reactions) sensitive personal data.
A simple select will show encrypted data, as well as downloading database files will do nothing because the columns will be encrypted and unusable.
Therefore, forced at home to secure the data in the database, I decided to write code that encrypts the data of the columns in... Page: 1   2   3   4   |