|
1 | 1 | #!/usr/bin/env python3 |
2 | 2 | """ |
3 | | -Build Script for Encrypter Native Libraries |
| 3 | +Build Script for fastcrypt Native Libraries |
4 | 4 |
|
5 | | -This script automatically compiles C/C++ native libraries for the Encrypter package |
| 5 | +This script automatically compiles C/C++ native libraries for the fastcrypt package |
6 | 6 | to provide maximum performance for cryptographic operations. |
7 | 7 | """ |
8 | 8 |
|
@@ -217,7 +217,7 @@ def test_libraries(self) -> bool: |
217 | 217 | # Try to load the libraries using Python |
218 | 218 | sys.path.insert(0, str(self.project_root)) |
219 | 219 |
|
220 | | - from encrypter.native.native_loader import get_native_manager |
| 220 | + from fastcrypt.native.native_loader import get_native_manager |
221 | 221 |
|
222 | 222 | manager = get_native_manager() |
223 | 223 | results = manager.load_all() |
@@ -273,7 +273,7 @@ def test_libraries(self) -> bool: |
273 | 273 |
|
274 | 274 | def build_all(self) -> bool: |
275 | 275 | """Build all native libraries.""" |
276 | | - print("Building Encrypter Native Libraries") |
| 276 | + print("Building fastcrypt Native Libraries") |
277 | 277 | print("=" * 50) |
278 | 278 |
|
279 | 279 | # Check dependencies |
@@ -357,7 +357,7 @@ def main(): |
357 | 357 | """Main function.""" |
358 | 358 | import argparse |
359 | 359 |
|
360 | | - parser = argparse.ArgumentParser(description='Build Encrypter native libraries') |
| 360 | + parser = argparse.ArgumentParser(description='Build fastcrypt native libraries') |
361 | 361 | parser.add_argument('--clean', action='store_true', help='Clean build artifacts') |
362 | 362 | parser.add_argument('--install', action='store_true', help='Install libraries system-wide') |
363 | 363 | parser.add_argument('--test-only', action='store_true', help='Only test existing libraries') |
|
0 commit comments