Skip to content

Commit 46b9653

Browse files
authored
init
1 parent 9a0d883 commit 46b9653

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</div>
1818
<br />
1919

20-
## Table of Contents
20+
# Table of Contents
2121
- [Credits](#credits)
2222
- [Purpose](#purpose)
2323
- [How it Works](#how-it-works)
@@ -27,7 +27,7 @@
2727

2828
# Credits
2929

30-
This repository hosts a refined implementation of [**Schnorr's protocol**](https://en.wikipedia.org/wiki/Schnorr_signature) , innovatively incorporating a state seed for enhanced security measures. While the underlying proofs may appear intricate, I aim to elucidate their functionality to the best of my ability. However, for a deeper understanding, I encourage referencing the seminal research papers underpinning this implementation, as they offer comprehensive insights.
30+
This repository hosts a refined implementation of [**Schnorr's Protocol**](https://en.wikipedia.org/wiki/Schnorr_signature) , innovatively incorporating a state seed for enhanced security measures. While the underlying proofs may appear intricate, I aim to elucidate their functionality to the best of my ability. However, for a deeper understanding, I encourage referencing the seminal research papers underpinning this implementation, as they offer comprehensive insights.
3131

3232
---
3333

@@ -108,7 +108,7 @@ In messaging applications, **HMAC** can be employed to authenticate message send
108108
<br>
109109
<br>
110110

111-
Synergistic Operation:
111+
Synergistic Operation
112112
---
113113
When combined, **"Zero-Knowledge" Proofs** and **HMAC** create a formidable framework for secure authentication in messaging applications. **ZKPs** facilitate identity verification without divulging sensitive information, while **HMAC** ensures the integrity and authenticity of messages exchanged between parties. Together, these mechanisms uphold the confidentiality, integrity, and authenticity of communication channels, safeguarding users' privacy and security in the digital realm.
114114

@@ -129,33 +129,33 @@ The **`Core Components`** streamline secure **Message Encryption** and **Decrypt
129129

130130
---
131131

132-
#### HMAC_Client.encrypt_message_by_chunks:
132+
#### HMAC_Client.encrypt_message_by_chunks
133133
Method to **encrypt a message** by processing it in **chunks**.
134134

135135
std::string encrypt_message_by_chunks(const std::string& message);
136136

137-
message: string # message: The message to be encrypted
137+
message: string # The message to be encrypted, processed in chunks
138138

139-
#### HMAC_Client.encrypt_message:
139+
#### HMAC_Client.encrypt_message
140140
Method to **encrypt a message** by a **chars**.
141141

142142
std::string encrypt_message(const std::string& message);
143143

144-
message: string # message: The char to be encrypted
145-
#### HMAC_Client.decrypt_message_by_chunks:
144+
message: string # The message to be encrypted, processed in characters
145+
146+
#### HMAC_Client.decrypt_message_by_chunks
146147
Method to **decrypt a message** by processing it in **chunks**.
147148

148149
std::string decrypt_message_by_chunks(const std::string& message);
149150

150-
message: string # message: The message to be dencrypted
151-
151+
message: string # The message to be decrypted, processed in chunks
152152

153-
#### HMAC_Client.decrypt_message:
153+
#### HMAC_Client.decrypt_message
154154
Method to **decrypt a message** by processing it in **chars**.
155155

156156
std::string encrypt_message(const std::string& message);
157157

158-
message: string # message: The char to be dencrypted
158+
message: string # The message to be decrypted, processed in characters
159159

160160
---
161161

0 commit comments

Comments
 (0)