/**
  * @param ResponseInterface $response
  *
  * @throws InvalidTimestampException
  * @throws InvalidUidSignatureException
  *
  * @return void
  */
 public function assert(ResponseInterface $response)
 {
     $data = $response->getData();
     $this->assertUid($data->get('UID'), $data->get('signatureTimestamp'), $data->get('UIDSignature'), $response);
 }