Credential.h   [plain text]


/*
 * Credential.h
 *
 * $Header$
 *
 * Copyright 2004 Massachusetts Institute of Technology.
 * All Rights Reserved.
 *
 * Export of this software from the United States of America may
 * require a specific license from the United States Government.
 * It is the responsibility of any person or organization contemplating
 * export to obtain such a license before exporting.
 * 
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
 * distribute this software and its documentation for any purpose and
 * without fee is hereby granted, provided that the above copyright
 * notice appear in all copies and that both that copyright notice and
 * this permission notice appear in supporting documentation, and that
 * the name of M.I.T. not be used in advertising or publicity pertaining
 * to distribution of the software without specific, written prior
 * permission.  Furthermore if you modify this software you must label
 * your software as modified software and not distribute it in such a
 * fashion that it might be confused with the original M.I.T. software.
 * M.I.T. makes no representations about the suitability of
 * this software for any purpose.  It is provided "as is" without express
 * or implied warranty.
 */

#import "Principal.h"
#import "Address.h"
#import "TargetOwnedTimer.h"

#define CredentialValid           0x00000000
#define CredentialBeforeStartTime 0x00000001
#define CredentialNeedsValidation 0x00000002
#define CredentialBadAddress      0x00000004
#define CredentialExpired         0x00000008
#define CredentialInvalid         0xFFFFFFFF

// Time Remaining Formats
enum  {
    kShortFormat = 1,
    kLongFormat
};

@interface Credential : NSObject
{
    cc_credentials_t credentials;
    cc_uint32 ticketFlags;
    Principal *clientPrincipal;
    Principal *servicePrincipal;
    NSMutableArray *addressesArray;
    NSWindowController *infoWindowController;
    TargetOwnedTimer *credentialTimer;
}

- (id) initWithCredentials: (cc_credentials_t) creds;
- (void) dealloc;

- (int) synchronizeWithCredentials: (cc_credentials_t) creds;

- (void) setupTimerLastAttemptFailed: (BOOL) lastAttemptFailed;
- (void) credentialTimer: (TargetOwnedTimer *) timer;

- (BOOL) isEqualToCredentials: (cc_credentials_t) compareCredentials;

- (time_t) issueTime;
- (time_t) startTime;
- (time_t) expirationTime;
- (time_t) renewUntilTime;

- (BOOL) hasValidAddress;
- (BOOL) isTGT;
- (BOOL) needsValidation;
- (cc_uint32) version;
- (BOOL) forwardable;
- (BOOL) forwarded;
- (BOOL) proxiable;
- (BOOL) proxied;
- (BOOL) postdatable;
- (BOOL) postdated;
- (BOOL) invalid;
- (BOOL) renewable;
- (BOOL) initial;
- (BOOL) preauthenticated;
- (BOOL) hardwareAuthenticated;
- (BOOL) isSKey;

- (int) stateAtTime: (time_t) atTime;
- (cc_time_t) timeRemainingAtTime: (time_t) atTime;

- (NSArray *) addresses;

- (NSString *) stringToKeyTypeString;
- (NSString *) sessionKeyEnctypeString;
- (NSString *) servicePrincipalKeyEnctypeString;
- (NSString *) clientPrincipalString;
- (NSString *) servicePrincipalString;
- (NSString *) versionString;

- (NSAttributedString *) stringValueForTicketInfoWindow;
- (NSAttributedString *) stringValueForTicketColumn;
- (NSAttributedString *) stringValueForLifetimeColumn;

- (int) numberOfChildren;
- (id) childAtIndex: (int) rowIndex;

- (NSPoint) showInfoWindowCascadingFromPoint: (NSPoint) cascadePoint;

- (void) windowWillClose: (NSNotification *) notification;
- (void) wakeFromSleep: (NSNotification *) notification;

@end