How to securely encrypt files with a shorter private key than RSA?
For improved security we need to store files encrypted, with individual keys for users needing access. I already learned that I should use a symmetric key with aes-256-cbc
for the file. Then I can use an asymmetric key for each user. I tried standard RSA with modulusLength: 2048
.