blob: 2caaf5d8438430a9f16af5150a19110d508e7776 [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_PUBLIC_KEY_H_
#define CHAPS_OBJECT_POLICY_PUBLIC_KEY_H_
#include "chaps/object_policy_key.h"
namespace chaps {
// Enforces common policies for public key objects (CKO_PUBLIC_KEY).
class ObjectPolicyPublicKey : public ObjectPolicyKey {
public:
ObjectPolicyPublicKey();
virtual ~ObjectPolicyPublicKey();
virtual void SetDefaultAttributes();
};
} // namespace chaps
#endif // CHAPS_OBJECT_POLICY_PUBLIC_KEY_H_