Is there any way to derive the RSA private key from another RSA private key?
Let's say I have a base RSA key $(P, Q)$ (both prime), and then use some salt and an algorithm that creates a new primes, e.g. $(P', Q') = f(P, Q, \mathsf{salt})$.
Is there any security issue with my approach? Does anyone have a better solution for this or is this not possible at all?
I want to do key derivation, so I can only use a salt and recreate keys in my code. This will enable me to not store more than one base key and just derive it with a specific salt parameter.