|
|
|
|
|
by pdkl95
3882 days ago
|
|
> code separation This is incredibly important for security. Reducing complexity and possible attack surface even between components is something that has been ignored in software for far too long. Crypto shouldn't ever be in the same address space of any process that also does parsing or network I/O. That's just asking for the keys to be leaked (or other problems) when the inevitable bug is found. |
|