#!/bin/sh -e
# SPDX-License-Identifier: WTFPL
# shellcheck enable=

for pub in /etc/ssh/*.pub
do
	ssh-keygen -l -f "$pub"
done
