find method
Returns the entry matching both principal and publicKey, or null if
the pair is not authorized.
Implementation
AuthorizedKey? find(String principal, Ed25519PublicKey publicKey) {
for (final entry in _entries) {
if (entry.principal.value == principal && entry.publicKey == publicKey) {
return entry;
}
}
return null;
}