Zoom’s rpm packages are signed with a GPG key. To verify that the rpm file has not been interfered with you can do the following:
Download the rpm file and GPG key from here.
Import the GPG key and check the fingerprint by executing the following in your terminal (in the folder where you downloaded the rpm file and GPG key):
[bash]sudo rpm –import package-signing-key.pub
gpg –fingerprint
[/bash]
Scroll through the list of keys and check the zoom GPG fingerprint matches.
3960 60CA DD8A 7522 0BFC B369 B903 BF18 61A7 C71D
Once you have verified it is the same you can check the signatures are ok using
[bash]sudo rpm -K zoom_x86_64.rpm[/bash]
Then finally you can install as normal
[bash]sudo dnf install zoom_x86_64.rpm[/bash]
Please note that these instructions are for Fedora Linux. For other flavours of linux they could be different (e.g. different package managers such as apt-get instead of dnf).