Skip to content

Commit dc346b6

Browse files
committed
Update build_native.py
1 parent 761c29f commit dc346b6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build_native.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env python3
22
"""
3-
Build Script for Encrypter Native Libraries
3+
Build Script for fastcrypt Native Libraries
44
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
66
to provide maximum performance for cryptographic operations.
77
"""
88

@@ -217,7 +217,7 @@ def test_libraries(self) -> bool:
217217
# Try to load the libraries using Python
218218
sys.path.insert(0, str(self.project_root))
219219

220-
from encrypter.native.native_loader import get_native_manager
220+
from fastcrypt.native.native_loader import get_native_manager
221221

222222
manager = get_native_manager()
223223
results = manager.load_all()
@@ -273,7 +273,7 @@ def test_libraries(self) -> bool:
273273

274274
def build_all(self) -> bool:
275275
"""Build all native libraries."""
276-
print("Building Encrypter Native Libraries")
276+
print("Building fastcrypt Native Libraries")
277277
print("=" * 50)
278278

279279
# Check dependencies
@@ -357,7 +357,7 @@ def main():
357357
"""Main function."""
358358
import argparse
359359

360-
parser = argparse.ArgumentParser(description='Build Encrypter native libraries')
360+
parser = argparse.ArgumentParser(description='Build fastcrypt native libraries')
361361
parser.add_argument('--clean', action='store_true', help='Clean build artifacts')
362362
parser.add_argument('--install', action='store_true', help='Install libraries system-wide')
363363
parser.add_argument('--test-only', action='store_true', help='Only test existing libraries')

0 commit comments

Comments
 (0)