You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<strong>Strings module for the encryption_helper package.</strong>
13
+
</p>
14
+
15
+
<palign="center">
16
+
<ahref="#attributes">Attributes</a> •
17
+
<ahref="#usage">Usage</a> •
18
+
<ahref="#license">License</a>
19
+
</p>
20
+
21
+
## Attributes
22
+
23
+
The `strings.py` module provides a collection of string constants used throughout the `encryption_helper` package. These constants include file suffixes for various key and encrypted file types.
24
+
25
+
-**private_key_suffix**: The file suffix for private key files.
26
+
-**public_key_suffix**: The file suffix for public key files.
27
+
-**encrypted_file_suffix**: The file suffix for encrypted files.
28
+
29
+
## Usage
30
+
31
+
This module defines string constants for use in the `encryption_helper` package. These constants help standardize file naming conventions across the package.
32
+
33
+
### Example
34
+
35
+
```python
36
+
from encryption_helper.common.strings import private_key_suffix, public_key_suffix, encrypted_file_suffix
0 commit comments