/* * Copyright (c) 2000-2001 Apple Computer, Inc. All Rights Reserved. * * @APPLE_LICENSE_HEADER_START@ * * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ // // key - representation of SecurityServer key objects // #ifndef _H_KCKEY #define _H_KCKEY #include "localkey.h" #include #include class KeychainDatabase; // // A Key object represents a CSSM_KEY known to the SecurityServer. // We give each Key a handle that allows our clients to access it, while we use // the Key's ACL to control such accesses. // A Key can be used by multiple Connections. Whether more than one Key can represent // the same actual key object is up to the CSP we use, so let's be tolerant about that. // // A note on key attributes: We keep two sets of attribute bits. The internal bits are used // when talking to our CSP; the external bits are used when negotiating with our client(s). // The difference is the bits in managedAttributes, which relate to persistent key storage // and are not digestible by our CSP. The internal attributes are kept in mKey. The external // ones are kept in mAttributes. // class KeychainKey : public LocalKey { public: KeychainKey(Database &db, const KeyBlob *blob); KeychainKey(Database &db, const CssmKey &newKey, uint32 moreAttributes, const AclEntryPrototype *owner = NULL); virtual ~KeychainKey(); KeychainDatabase &database() const; // we can also yield an encoded KeyBlob *if* we belong to a database KeyBlob *blob(); // ACL state management hooks void instantiateAcl(); void changedAcl(); const Database *relatedDatabase() const; CSSM_KEYATTR_FLAGS attributes() { return mAttributes; } private: void decode(); void getKey(); virtual void getHeader(CssmKey::Header &hdr); // get header (only) without mKey private: CssmKey::Header mHeaderCache; // cached, cleaned blob header cache KeyBlob *mBlob; // key blob encoded by mDatabase bool mValidBlob; // mBlob is valid key encoding }; #endif //_H_KCKEY