The Streaming plugin only supports plain RTP. SRTP would not be possible without negotiation, which does not occur for the Streaming plugin: you just start sending packets to a known port and they're relayed (we do have it instead for the SIP plugin, for instance, as negotiation happens there for SIP). Besides, SRTP would break the ability to change source dynamically without changing the mountpoint, which is a useful feature.
If you want a secure transfer somehow, you'll have to implement an SRTP backend yourself, which then locally relays the RTP media to the Streaming plugin. As an alternative, use WebRTC to send to a VideoRoom, and have that publisher relayed to the Streaming plugin via RTP forwarding.
L.