MOD: Changed text
This commit is contained in:
parent
3328c85c7c
commit
abbe36c930
@ -2,11 +2,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="description" class="content">
|
<div id="description" class="content">
|
||||||
<h1 class="title">Project Description</h1>
|
<h1 class="title">Project Description</h1>
|
||||||
|
|
||||||
<div class="project-overview">
|
<div class="project-overview">
|
||||||
<h2 class="section-title">What is Icing?</h2>
|
<h2 class="section-title">What is Icing?</h2>
|
||||||
<p>
|
<p>
|
||||||
Icing is a simple, lightweight, and efficient phone client designed to replace your daily calling application. It ensures end-to-end encryption of telephone communications by re-implementing SRTP (Secure Real-time Transport Protocol) and ECDH (Elliptic Curve Diffie-Hellman) protocols. SRTP encrypts the communication, while ECDH optimizes performance using a symmetric encryption key.
|
Icing is a simple, lightweight, and efficient dialer designed to replace your everyday phone app. It ensures end-to-end encryption of telephone communications by implementing a home-made, analogic-based voice encryption. Inspired by SRTP (Secure Real-time Transport Protocol), using ECDH (Elliptic Curve Diffie-Hellman).
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -14,15 +14,18 @@
|
|||||||
<h2 class="section-title">Key Features</h2>
|
<h2 class="section-title">Key Features</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>End-to-End Encryption:</strong> Secure your calls with robust encryption protocols.</li>
|
<li><strong>End-to-End Encryption:</strong> Secure your calls with robust encryption protocols.</li>
|
||||||
<li><strong>Transparency:</strong> If the other party doesn't use Icing, the call remains normal.</li>
|
<li><strong>Transparent:</strong> If your peer doesn't use Icing, the call remains completely normal.</li>
|
||||||
<li><strong>Icing Protocol:</strong> An open-source protocol including efficient data compression and an acoustic protocol for transmitting digital data over analog mediums.</li>
|
<li><strong>Analogic-based:</strong> An open-source, exportable, protocol that <strong>works without internet.</strong></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="how-it-works">
|
<div class="how-it-works">
|
||||||
<h2 class="section-title">How It Works</h2>
|
<h2 class="section-title">How It Works</h2>
|
||||||
<p>
|
<p>
|
||||||
During a call between two Icing users, voices are encrypted, compressed, and transmitted via the telephone network using the Icing Acoustic Protocol, which leverages MFSK (Multiple Frequency-Shift Keying) to transmit digital data over analog audio signals. The data is then decompressed, errors are managed and corrected, and finally decrypted before reaching the recipient.
|
Icing generates a cryptographic key pair for you. Share your public key with a neat QR code.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
During a call between two Icing users, voices are encrypted, compressed, and transmitted via the telephone network using the Icing Acoustic Protocol.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -32,18 +35,14 @@
|
|||||||
We are a team of five dedicated individuals working on this solution:
|
We are a team of five dedicated individuals working on this solution:
|
||||||
</p>
|
</p>
|
||||||
<ul class="team-list">
|
<ul class="team-list">
|
||||||
<li>Bartosz Michalak</li>
|
<li><a href="https://github.com/Bartoszkk/" target="_blank">Bartoszkk</a></li>
|
||||||
<li>Ange Duhayon</li>
|
<li><a href="https://github.com/AustralEpitech/" target="_blank">AustralEpitech</a></li>
|
||||||
<li>Stéphane Corbière</li>
|
<li><a href="https://github.com/STCB/" target="_blank">STCB</a></li>
|
||||||
<li>Florian Griffon</li>
|
<li><a href="https://github.com/FlorianGRIFFON/" target="_blank">Florian GRIFFON</a></li>
|
||||||
<li>Alexis Danlos</li>
|
<li><a href="https://github.com/AlexisDanlos/" target="_blank">Alexis Danlos</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Optional: Link back to Home -->
|
|
||||||
<p class="back-link-container">
|
|
||||||
<router-link to="/" class="back-link">Back to Home</router-link>
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -56,7 +55,7 @@ export default {
|
|||||||
<style scoped>
|
<style scoped>
|
||||||
/* Theme colors */
|
/* Theme colors */
|
||||||
:root {
|
:root {
|
||||||
--primary-color: #4CAF50; /* Green accent color */
|
--primary-color: #000000; /* Green accent color */
|
||||||
--background-color: #f5f5f5; /* Light background */
|
--background-color: #f5f5f5; /* Light background */
|
||||||
--text-color: #333; /* Dark text */
|
--text-color: #333; /* Dark text */
|
||||||
--secondary-text-color: #777; /* Secondary text color */
|
--secondary-text-color: #777; /* Secondary text color */
|
||||||
@ -223,4 +222,9 @@ ul {
|
|||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: var(--primary-color);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Reference in New Issue
Block a user