<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: MbarekOulkheir</title>
    <description>The latest articles on DEV Community by MbarekOulkheir (@mbarekoulkheir).</description>
    <link>https://dev.to/mbarekoulkheir</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3884965%2Fbf58746d-77fe-4bf9-962e-44d1ee13729a.png</url>
      <title>DEV Community: MbarekOulkheir</title>
      <link>https://dev.to/mbarekoulkheir</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mbarekoulkheir"/>
    <language>en</language>
    <item>
      <title>Mbarek Cipher algorithme de chiffrement expérimental en PHP</title>
      <dc:creator>MbarekOulkheir</dc:creator>
      <pubDate>Thu, 25 Jun 2026 21:35:06 +0000</pubDate>
      <link>https://dev.to/mbarekoulkheir/mbarek-cipher-algorithme-de-chiffrement-experimental-en-php-2hc3</link>
      <guid>https://dev.to/mbarekoulkheir/mbarek-cipher-algorithme-de-chiffrement-experimental-en-php-2hc3</guid>
      <description>&lt;p&gt;Mbarek Cipher est un algorithme de chiffrement expérimental evolutif purement en PHP, basé sur une architecture de transformations multi-dimensionnelles :&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;state dynamique (IV + key dérivés)&lt;br&gt;
transformations non-linéaires multi-étapes&lt;br&gt;
flux séquentiel réversible&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;👉 Le projet évolue d’un modèle “multi-dimensionnel expérimental” (v2) vers un cipher stateful structuré (v3).&lt;br&gt;
&lt;a href="https://github.com/MbarekOulkheir/MbarekCipher-Core-v3.git" rel="noopener noreferrer"&gt;github.com/MbarekOulkheir/MbarekCipher-Core-v3.git&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9l5pmwuwrxf1nh2fa45v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9l5pmwuwrxf1nh2fa45v.png" alt=" " width="800" height="439"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>php</category>
      <category>crypto</category>
      <category>developer</category>
    </item>
    <item>
      <title>Experimental cryptographic engine in PHP (v3). Core architecture for CipherV3 with lab testing framework</title>
      <dc:creator>MbarekOulkheir</dc:creator>
      <pubDate>Sun, 21 Jun 2026 12:06:14 +0000</pubDate>
      <link>https://dev.to/mbarekoulkheir/experimental-cryptographic-engine-in-php-v3-core-architecture-for-cipherv3-with-lab-testing-43l8</link>
      <guid>https://dev.to/mbarekoulkheir/experimental-cryptographic-engine-in-php-v3-core-architecture-for-cipherv3-with-lab-testing-43l8</guid>
      <description>&lt;p&gt;Mbarek Cipher est un algorithme de chiffrement expérimental evolutif purement en PHP, basé sur une architecture de transformations multi-dimensionnelles :&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Mbarek Cipher v2</title>
      <dc:creator>MbarekOulkheir</dc:creator>
      <pubDate>Fri, 17 Apr 2026 18:00:20 +0000</pubDate>
      <link>https://dev.to/mbarekoulkheir/mbarek-cipher-v2-4jch</link>
      <guid>https://dev.to/mbarekoulkheir/mbarek-cipher-v2-4jch</guid>
      <description>&lt;h2&gt;
  
  
  🔐 Building Mbarek Cipher v2 — A Custom Encryption System in PHP
&lt;/h2&gt;

&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;I built a custom encryption system in PHP called Mbarek Cipher v2.&lt;/p&gt;

&lt;p&gt;The goal of this project is to explore cryptography concepts by designing a dynamic and experimental cipher system from scratch.&lt;/p&gt;

&lt;p&gt;It is an open-source project focused on learning, experimentation, and continuous improvement.&lt;/p&gt;




&lt;h2&gt;
  
  
  Project Overview
&lt;/h2&gt;

&lt;p&gt;Mbarek Cipher v2 is a custom encryption system built in PHP.&lt;/p&gt;

&lt;p&gt;The core idea is to transform input data using a dynamic structure-based cipher. Instead of relying on standard algorithms, the system applies a personalized transformation logic driven by a key-based mechanism.&lt;/p&gt;

&lt;p&gt;The encryption and decryption processes are symmetrical, meaning the same logic (reversed) is used to restore the original data.&lt;/p&gt;




&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;PHP 8+&lt;/li&gt;
&lt;li&gt;Pure PHP implementation (no frameworks)&lt;/li&gt;
&lt;li&gt;Custom cryptographic structure&lt;/li&gt;
&lt;li&gt;Experimental cipher architecture&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Symmetric encryption/decryption system&lt;/li&gt;
&lt;li&gt;Dynamic key-based transformation&lt;/li&gt;
&lt;li&gt;Experimental cipher design for learning purposes&lt;/li&gt;
&lt;li&gt;Lightweight and easy to integrate&lt;/li&gt;
&lt;li&gt;Open-source for community feedback and improvement&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Example / Demo
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Input
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Plain text: sample message&lt;/li&gt;
&lt;li&gt;Key: custom-secret-key&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Process
&lt;/h3&gt;

&lt;p&gt;The input is transformed using the cipher’s key-based dynamic structure.&lt;/p&gt;

&lt;h3&gt;
  
  
  Output
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Encrypted text: (generated cipher output)&lt;/li&gt;
&lt;li&gt;Decrypted text: original input restored&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Mbarek Cipher v2 is a personal exploration of cryptography concepts implemented in PHP.&lt;/p&gt;

&lt;p&gt;This project is still evolving, and its purpose is to experiment, learn, and improve through community feedback.&lt;/p&gt;

&lt;p&gt;Feel free to share ideas, suggestions, or improvements.&lt;/p&gt;




&lt;h2&gt;
  
  
  Repository
&lt;/h2&gt;

&lt;p&gt;The project is open-source and available on GitHub:&lt;br&gt;
&lt;a href="https://github.com/MbarekOulkheir/MbarekCipher-v2" rel="noopener noreferrer"&gt;https://github.com/MbarekOulkheir/MbarekCipher-v2&lt;/a&gt;&lt;/p&gt;




</description>
      <category>php</category>
      <category>cryptography</category>
      <category>security</category>
      <category>encryption</category>
    </item>
  </channel>
</rss>
