import { VerifyKeyFormat } from '../../../@utility/data-structures/asymmetric-cryptography'

const verifyKeyFormat: VerifyKeyFormat = verifyKeyFormatFunction

function verifyKeyFormatFunction (_key: string): Promise<boolean[]> {
  return Promise.resolve([true])
}

export {
  verifyKeyFormat
}