#!/bin/sh
for x in /etc/ssh/*.pub; do
	ssh-keygen -l -f "$x"
done
