I'm reading RFC4279 (Pre-Shared Key Ciphersuites for Transport Layer Security), Section 7.1, which is about Perfect Forward Secrecy. In that section, it's said that PSK/RSA_PSK ciphersuites don't provide forward secrecy. But, if I'm not wrong, PSKs are used to form premaster secret, which is then used with random numbers to create master secret. Doesn't that mean even PSKs are compromised they should provide forward secrecy (because in every session random numbers will force to create new keys)?
Thanks.