Posts

Quarkus - How to send a secret from Mobile to Server?

Image
Hello everyone, Today we will learn how to implement end-to-end encryption in the Quarkus ecosystem. Here I am showing architecture visualization and demo application implementation. Encryption's primary purpose is to protect against brute force attacks. It is composed of a cipher, the message/data, and a key (the password). With a wide range of free tools available like(Aircrack-ng, John the Ripper, Rainbow Crack, L0phtCrack ), even baby hackers can attempt to hack passwords using brute force. In my opinion, as a layperson in cryptography, multiple double-layer encryptions may not increase security, but they may slow down attackers. Using encryption may cause performance issues. Or maybe not. It really depends on how you use it. If you understand just how "expensive" each part of your enterprise encryption operation is, it's possible you can avoid the expensive parts and dramatically increase the performance of your applications. Let's see the architecture of the

Build REST CRUD APIs with PHP and MySQL

Image
Hello everyone. today we will learn how to develop REST-style CRUD APIs with PHP and MySQL. After completing this tutorial what we will build?  We will build REST API  CRUD features:  GET - Fetch all User       : /php-mysql-crud-api/read.php GET - Get User by ID     : /php-mysql-crud-api/single_user.php/?id=172 POST - Create User         : /php-mysql-crud-api/create.php PUT - Edit User Details   : /php-mysql-crud-api/update.php DELETE - Delete User    : /php-mysql-crud-api/delete.php/?id=172 Project Directory: Setting Up Database: Create Database "user_db" and create table "user" -- -- Database: `user_db` -- -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE `user` ( `id` bigint ( 20 ) UNSIGNED NOT NULL , `first_name` varchar ( 50 ) NOT NULL , `last_name` varchar ( 50 ) NOT NULL , `email_id` varchar ( 50 ) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; ALTER TABLE `user` ADD