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
# This releases the GIL, so it's thread-safe and incredibly fast
163
+
is_valid = reader.verify()
164
+
165
+
end = time.time()
166
+
167
+
if is_valid:
168
+
print(f"SUCCESS: Integrity verified in {end - start:.4f}s")
169
+
else:
170
+
print("ERROR: Corruption detected!")
171
+
```
172
+
118
173
## Contributing
119
174
120
175
Contributions, issues, and feature requests are welcome! For libbbf, free to check the [issues page](https://github.com/ef1500/libbbf/issues) (or create one if it doesn't exist yet).
@@ -123,4 +178,4 @@ Contributions, issues, and feature requests are welcome! For libbbf, free to che
123
178
124
179
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
0 commit comments