123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- /*Copyright (c) 2009 Extendmac, LLC. <support@extendmac.com>
-
- Permission is hereby granted, free of charge, to any person
- obtaining a copy of this software and associated documentation
- files (the "Software"), to deal in the Software without
- restriction, including without limitation the rights to use,
- copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the
- Software is furnished to do so, subject to the following
- conditions:
-
- The above copyright notice and this permission notice shall be
- included in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- OTHER DEALINGS IN THE SOFTWARE.
- */
- //Last Updated February 8th, 2011.
- #import <Cocoa/Cocoa.h>
- #import <Carbon/Carbon.h>
- #import <Security/Security.h>
- /*!
- @abstract EMKeychainItem is a self-contained wrapper class for two-way communication with the keychain. You can add, retrieve, and remove both generic and internet keychain items.
- @dicussion All keychain items have a username, password, and optionally a label.
- */
- @interface EMKeychainItem : NSObject
- {
- @private
- NSString *mUsername;
- NSString *mPassword;
- NSString *mLabel;
-
- @protected
- SecKeychainItemRef mCoreKeychainItem;
- }
- /*!
- @abstract Returns whether or not errors are logged.
- @discussion Errors occur whenever a keychain item fails to appropriately update a property, or when a given keychain item cannot be found.
- */
- + (BOOL)logsErrors;
- //! @abstracts Sets whether or not errors are logged.
- + (void)setLogsErrors:(BOOL)logsErrors;
- //! @abstracts Locks the keychain.
- + (void)lockKeychain;
- //! @abstract Unlocks the keychain.
- + (void)unlockKeychain;
- //! @abstract The keychain item's username.
- @property (readwrite, copy) NSString *username;
- //! @abstract The keychain item's password.
- @property (readwrite, copy) NSString *password;
- //! @abstract The keychain item's label.
- @property (readwrite, copy) NSString *label;
- /*!
- @abstract Removes the receiver from the keychain.
- @discussion After calling this method, you should generally discard of the receiver. The receiver cannot be "re-added" to the keychain; invoke either addGenericKeychainItemForService:... or addInternetKeychainItemForServer:... instead.
- */
- - (void)removeFromKeychain;
- @end
- #pragma mark -
- /*!
- @abstract An EMGenericKeychainItem wraps the functionality and data-members associated with a generic keychain item.
- @discussion Generic keychain items have a service name in addition to the standard keychain item properties.
- */
- @interface EMGenericKeychainItem : EMKeychainItem
- {
- @private
- NSString *mServiceName;
- }
- //! @abstract The keychain item's service name.
- @property (readwrite, copy) NSString *serviceName;
- /*!
- @abstract Returns, if possible, a generic keychain item that corresponds to the given service.
- @param serviceName The service name. Cannot be nil.
- @param username The username. Cannot be nil.
- @result An EMGenericKeychainItem if the keychain item can be discovered. Otherwise, nil.
- */
- + (EMGenericKeychainItem *)genericKeychainItemForService:(NSString *)serviceName
- withUsername:(NSString *)username;
- /*!
- @abstract Adds a keychain item for the given service.
- @param serviceName The service name. Cannot be nil.
- @param username The username. Cannot be nil.
- @param password The password to associate with the username and service. Cannot be nil.
- @result An EMGenericKeychainItem if the service can be added to the keychain. Otherwise, nil.
- */
- + (EMGenericKeychainItem *)addGenericKeychainItemForService:(NSString *)serviceName
- withUsername:(NSString *)username
- password:(NSString *)password;
- @end
- #pragma mark -
- /*!
- @abstract An EMInternetKeychainItem wraps the functionality and data-members associated with an internet keychain item.
- @discussion Internet keychain items can optionally have a server, path, port, and protocol in addition to the standard keychain item properties.
- */
- @interface EMInternetKeychainItem : EMKeychainItem
- {
- @private
- NSString *mServer;
- NSString *mPath;
- NSInteger mPort;
- SecProtocolType mProtocol;
- }
- /*!
- @abstract Returns, if possible, an internet keychain item that corresponds to the given server.
- @param server The server. Cannot be nil.
- @param username The username. Cannot be nil.
- @param path The path.
- @param port The port.
- @param protocol The protocol.
- @result An EMInternetKeychainItem if the keychain item can be discovered. Otherwise, nil.
- */
- + (EMInternetKeychainItem *)internetKeychainItemForServer:(NSString *)server
- withUsername:(NSString *)username
- path:(NSString *)path
- port:(NSInteger)port
- protocol:(SecProtocolType)protocol;
- /*!
- @abstract Adds a keychain item for the given server.
- @param server The server. Cannot be nil.
- @param username The username. Cannot be nil.
- @param password The password to associate with the server, username, path, port, and protocol. Cannot be nil.
- @param path The path.
- @param port The port.
- @param protocol The protocol.
- @result An EMInternetKeychainItem if the item can be added to the keychain. Otherwise, nil.
- */
- + (EMInternetKeychainItem *)addInternetKeychainItemForServer:(NSString *)server
- withUsername:(NSString *)username
- password:(NSString *)password
- path:(NSString *)path
- port:(NSInteger)port
- protocol:(SecProtocolType)protocol;
- //! @abstract The keychain item's server.
- @property (readwrite, copy) NSString *server;
- //! @abstract The keychain item's path.
- @property (readwrite, copy) NSString *path;
- //! @abstract The keychain item's port.
- @property (readwrite, assign) NSInteger port;
- //! @abstract The keychain item's protocol.
- @property (readwrite, assign) SecProtocolType protocol;
- @end
|