authenticate method

Future<bool> authenticate(
  1. dynamic privateKey
)

Generates digest using from verb response and privateKey and performs a PKAM authentication to secondary server. This method is executed for all verbs that requires authentication.

Implementation

Future<bool> authenticate(var privateKey) async {
  var authResult = await atLookUp.authenticate(privateKey);
  return authResult;
}