<?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: ORPHÉRIC</title>
    <description>The latest articles on DEV Community by ORPHÉRIC (@orpheric73).</description>
    <link>https://dev.to/orpheric73</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3881074%2F056183bf-f883-44fd-83f2-cf38b775124b.jpeg</url>
      <title>DEV Community: ORPHÉRIC</title>
      <link>https://dev.to/orpheric73</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/orpheric73"/>
    <language>en</language>
    <item>
      <title>🔐CipherFlow System v1.1 —File Encryption in C</title>
      <dc:creator>ORPHÉRIC</dc:creator>
      <pubDate>Sun, 26 Apr 2026 04:06:17 +0000</pubDate>
      <link>https://dev.to/orpheric73/cipherflow-system-v11-file-encryption-in-c-5863</link>
      <guid>https://dev.to/orpheric73/cipherflow-system-v11-file-encryption-in-c-5863</guid>
      <description>&lt;h2&gt;
  
  
  🔐 Building CipherFlow System v1.1 — A Custom File Encryption Tool in C
&lt;/h2&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.amazonaws.com%2Fuploads%2Farticles%2Fcod5kp96gcoe666xm7bx.jpg" 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.amazonaws.com%2Fuploads%2Farticles%2Fcod5kp96gcoe666xm7bx.jpg" alt="social preview" width="800" height="600"&gt;&lt;/a&gt;&lt;br&gt;
I’ve been working on a personal project called CipherFlow System, a console-based application written in C that handles file encryption, decryption, and scheduled operations.&lt;/p&gt;

&lt;p&gt;This project started as a way to deepen my understanding of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;memory management in C&lt;/li&gt;
&lt;li&gt;file handling&lt;/li&gt;
&lt;li&gt;and low-level security concepts&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🚀 What’s new in v1.1
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;✨ Improved Input Handling&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Added drag &amp;amp; drop support for file paths&lt;/li&gt;
&lt;li&gt;Better validation to prevent user errors&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;🎬 Animation Control&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Users can now enable or disable console animations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;🔐 Security Enhancement&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Introduced a non-linear permutation layer&lt;/li&gt;
&lt;li&gt;This helps break the direct mapping between input and output data&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;⚠️ Safety Improvements&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Added warnings to prevent accidental file overwrite&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;🔐 How the encryption works (simplified)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The algorithm is custom-built and follows these steps:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Generate a key from the password + version&lt;/li&gt;
&lt;li&gt;Transform file data using that key&lt;/li&gt;
&lt;li&gt;Apply a non-linear permutation to obfuscate structure&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The goal isn’t to replace standard cryptographic libraries, but to explore how such systems can be designed from scratch.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;💻 Tech Stack&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;C (GCC)&lt;/li&gt;
&lt;li&gt;Windows Console API&lt;/li&gt;
&lt;li&gt;Custom encryption logic&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;📦 Try it&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;👉&lt;a href="https://github.com/orpheric73/FILE_CRYPTER/releases/download/v1.1/FILE_CRYPTER.exe" rel="noopener noreferrer"&gt;https://github.com/orpheric73/FILE_CRYPTER/releases/download/v1.1/FILE_CRYPTER.exe&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;📚 Documentation&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/orpheric73/FILE_CRYPTER/blob/main/README.md" rel="noopener noreferrer"&gt;https://github.com/orpheric73/FILE_CRYPTER/blob/main/README.md&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;💭 Feedback&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I’d really appreciate feedback from other developers — especially on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the encryption approach&lt;/li&gt;
&lt;li&gt;code structure&lt;/li&gt;
&lt;li&gt;possible improvements&lt;/li&gt;
&lt;/ul&gt;




&lt;h1&gt;
  
  
  c #cybersecurity #opensource #programming #learning
&lt;/h1&gt;

</description>
      <category>cli</category>
      <category>programming</category>
      <category>security</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
