Re: Are memory safety and maximized data volatility mutually exclusive?
Toby Murray <tobycmurray-gM/[email protected]> Thu, 8 Oct 2015 21:58:05 +1100
| Newsgroups | gmane.comp.capabilities.general |
|---|---|
| Message-ID | <CAB_O7MLgb2FXN8A5NZx9a0y0WUSvOwUC7OsF+Vf_-MS0rX-gbw@mail.gmail.com> |
On 8 October 2015 at 19:23, rmeijer <rmeijer-qWit8jRvyhVmR6Xm/[email protected]> wrote: > are memory safety and sensitive data > volatility mutually exclusive in a "fundamental" way? You need to distinguish between memory safety and garbage collection. The former is possible without the latter, usually by using some form of type system that tracks memory references, e.g. linear types or similar. Have you thought about trying Rust instead of Python? Toby