B4A Tutorial [B4x] AES Encryption (lessons learned & best practice) - KMatle    Oct 04, 2018   (25 reactions) Last weekend I migrated my XAMPP test environment (Apache/PHP/MySql). It came with PHP 7.x. Yesterday I wanted to test one of my Apps using AES and Mcrypt for it in PHP but it didn't work no more. I noticed that MCrypt was deprecated anyway and even was removed due to security and other issues from B4J Code Snippet [B4x] AES-256 encryption with salt and iv (works with all platforms like php, .net, etc.) - KMatle    Feb 19, 2021   (12 reactions) $IV=openssl_random_pseudo_bytes(16, $securityok);
$Salt=openssl_random_pseudo_bytes(32, $securityok);
$output = openssl_encrypt($string, $encrypt_method, $pw, 0,$IV);
$output=Base64_encode($Salt.$IV.Base64_decode($output));
//$output is base64 encoded automatically!
return $outpu B4J Tutorial [BANanoVuetifyAD3] Create Professional Looking Vuetify WebSites & WebApps with BANano - Mashiane (first post)    Apr 13, 2022   (3 reactions) MySQL PHP - Traffic Encryption Between JavaScript & PHP
DISCLAIMER: ALWAYS RUN YOUR PHP WEBSERVER ON TOP ON SSL
This functionality enables one to encrypt & decrypt traffic between their BANano JavaScript WebApps & their MySQL PHP based connections.
OX95nBz8K08
NB. The DataSource Will do this a Share My Creation User Signup,Verification,Login + PHP + MySQL - Kope (first post)    Jul 08, 2022 PHP encryption for Password but it can be enhanced B4A Question Looking for a simple encryption solution between B4A and PHP - toby    May 12, 2022   (1 reaction) I need a simple solution to encrypt some user id in B4A app and decrypt it on the server using PHP, and vice versa.
Earlier I was checking on RSA which might be a little overkill.
Any suggestion is welcome.
TIA B4J Question Decrypt password protected textfield - QtechLab (first post)    Jan 17, 2022   (1 reaction) Hello ThRuST, What are you trying to achieve with encryption?
In my project i use AES256 encryption between B4X applications and PHP server. Of course you have to manage the encryption key in the safest way you can. I use a dynamic key (and of course i can't tell how to do it). But if you need a PHP B4A Question Encryption functions HMACSHA256 - SMOOTSARA    Oct 08, 2021   (2 reactions) Hello friends :) I use the following 2 functions in php language for Encryption HMACSHA256 Can you help me write it in B4A from PHP? $key = '12345'; $raw = ''; $meta = ; function encrypt( $key, $plaintext, $meta = '' ) { // Generate valid key $key = hash_pbkdf2( 'sha2 B4A Example B4Xgoodies_from_walt61 Online - AnandGupta (first post)    Feb 13, 2023   (1 reaction) B4R
Encryption
ESP32: AES256 encrypted & Base64 encoded post message to and from PHP
ESP32: AES256 encrypted & Base64 encoded post message to and from PHP
https://www.b4x.-aes256-encrypted-base64-encoded-post-message-to-and-from-php.145962/
B4J
B4J
Integrated B4JPackager11 - The simple way to dist B4R Tutorial RSA Encryption: Create keys, en-/decrypt, hash, sign/verify signature (clean code) - KMatle    Feb 04, 2023   (4 reactions) This example replaces my previous examples with cleaner inline C coding (I'm getting better :-))using almost all variables from Globals. You can define the keysizes (eg. 2048 or 4096). It's fully compatible with all plattforms (B4x, PHP, OpenSSL, etc.). The ESP's use mbdtls which is included. You ca B4J Tutorial [B4x] Exchange Data via OkHttpUtils and php (or other platforms) via lists, maps, arrays, etc. - KMatle    Mar 08, 2020   (14 reactions) It returns just a simple string #2: Same as #1 but it returns an simple array (list/array in B4x or other platforms) #3: returns a associative array which is a map in B4x with key -> value pairs #4: returns a list with arrays = list with maps #5: send a map to the script and it returns the map's con Page: 1   2   3   4   5   6   7   Powered by ColBERT |