#ifndef TOOLS_PA_SIGNER_SRC_NATIVECERTIFICATE_H_
#define TOOLS_PA_SIGNER_SRC_NATIVECERTIFICATE_H_

#include <string>

#include "ProcessCertificate.h"


class NativeCertificate: public ProcessCertificate {
public:
  NativeCertificate(
      const std::string& path, const std::string& b64_five_signature,
      long key_id);
};

#endif /* TOOLS_PA_SIGNER_SRC_NATIVECERTIFICATE_H_ */
