blob: 88a18561b24dc6dd8775cc53cbff91daec2ae46f [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHAPS_OBJECT_POLICY_CERT_H_
#define CHAPS_OBJECT_POLICY_CERT_H_
#include "chaps/object_policy_common.h"
namespace chaps {
// Enforces policies for certificate objects (CKO_CERTIFICATE).
class ObjectPolicyCert : public ObjectPolicyCommon {
public:
ObjectPolicyCert();
virtual ~ObjectPolicyCert();
virtual bool IsObjectComplete();
virtual void SetDefaultAttributes();
};
} // namespace chaps
#endif // CHAPS_OBJECT_POLICY_CERT_H_