I'm not 100% sure about what I'm about to say, but as far as I know, any plain static encryption will result in the same number of characters.
I mean, just like MD5 has a specific length so does RSA.
Which means that an RSA encryption of "a" or "skadasndjkasndjknasdjnsjdnaksnd" will result in a different string but with the same length.
Knowing this it's possible to know the encryption method, however if more than one encryption (and I don't mean ENCODED) is applied the whole process of reverse is lost.
Above you mention a base64 decode in a RSA-1024, well, to be honest there's no easy way to know what kind of encryption and encoding has been done, no special chars or pre-fix, the only way is to actually make or find a list that contains a combo of these possibility's.
Unlike with MD5 where you can easily detect a WordPress MD5 due to the prefix which you won't find in a regular MD5 encryption.
So a short answer: It's possible to make a close guess, it's not possible to be 100% sure.