-
Hello everyone, I have been researching some rust rewriting projects recently, would it be convenient to know your rewriting methods? Have you used tools like C2rust to help with rewriting? Also, how do you verify that CLI tools rewritten in rust are more secure than those written in C? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
please use Discussions instead of issues for questions. We didn't use C2rust because:
Rust removing some classes of issues, we are less worried about memory mgmt issues. |
Beta Was this translation helpful? Give feedback.
please use Discussions instead of issues for questions.
We didn't use C2rust because:
Rust removing some classes of issues, we are less worried about memory mgmt issues.
Besides that, we are fuzzing our code to find issues:
https://introspector.oss-fuzz.com/projects-overview
It didn't find any security issues.