olvid-io / olvid-android

Olvid for Android
GNU Affero General Public License v3.0
151 stars 14 forks source link

Constant time Mac verify #26

Open aure994 opened 9 months ago

aure994 commented 9 months ago

Constant time hmac equality check is a best practice to avoid potential timing attacks. It seems that Arrays.equals does not work in constant time. I think MessageDigest.isEqual is more appropriate in this case.