authenticationFromData function

Authentication authenticationFromData(
  1. AuthenticationData auth
)

Implementation

Authentication authenticationFromData(AuthenticationData auth) {
  return auth.value.startsWith(KeyId.prefix())
      ? Authentication.keyId(KeyId.fromString(auth.value))
      : Authentication.publicKey(PublicKey.fromString(auth.value));
}