SFCertificatePanel Class Reference
| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/SecurityInterface.framework |
| Availability | Available in OS X v10.3 and later |
| Companion guide | |
| Declared in | SFCertificatePanel.h |
Overview
The SFCertificatePanel class displays one or more certificates in a panel or sheet. It can optionally display all of the certificates in a certificate chain.
The following figure shows an example of a certificate panel.

This class displays certificate details, but not trust settings. To display a certificate with editable trust settings in a panel or sheet, use the SFCertificateTrustPanel class (SFCertificateTrustPanel). To display certificates in a custom view, use the SFCertificateView class (SFCertificateView).
Note that for OS X v10.4 and later, this class displays the evaluation status for each certificate. You can modify how the certificates are evaluated by calling the setPolicies: method.
Tasks
Returning a Shared Certificate Panel Object
Providing Help
Customizing the Appearance of the Sheet or Panel
Displaying a Sheet or Panel
-
– beginSheetForWindow:modalDelegate:didEndSelector:contextInfo:certificates:showGroup: -
– beginSheetForWindow:modalDelegate:didEndSelector:contextInfo:trust:showGroup: -
– certificateView -
– runModalForCertificates:showGroup: -
– runModalForTrust:showGroup:
Delegate Method for Providing Help
-
– certificatePanelShowHelp:delegate method
Class Methods
sharedCertificatePanel
Returns a shared certificate panel object. If the object has not already been created, this method allocates and initializes the object first.
Discussion
Use this method if your application displays a single certificate panel or sheet at a time. If your application can display multiple certificate panels or sheets at once, you must allocate separate object instances (using the alloc class method inherited from NSObject) and initialize them (using the init instance method, also inherited from NSObject) instead of using this class method.
Availability
- Available in OS X v10.3 and later.
Declared In
SFCertificatePanel.hInstance Methods
beginSheetForWindow:modalDelegate:didEndSelector:contextInfo:certificates:showGroup:
Displays one or more certificates in a modal sheet.
Parameters
- docWindow
The parent window to which the sheet is attached.
- delegate
The delegate object in which the method specified in the
didEndSelectorparameter is implemented.- didEndSelector
A selector for a delegate method called when the sheet has been dismissed. Implementation of this delegate method is optional.
- contextInfo
A pointer to data that is passed to the delegate method. You can use this data pointer for any purpose you wish.
- certificates
The certificates to display. Pass an NSArray containing one or more objects of type
SecCertificateRefin this parameter. The first certificate in the array must be the leaf certificate. The other certificates (if any) can be included in any order.- showGroup
Specifies whether additional certificates (other than the leaf certificate) are displayed.
Discussion
The behavior of this method is somewhat different in OS X v10.4 and later versus OS X v10.3. In OS X v10.3, the sheet displays whatever certificates you pass in the certificates parameter (provided the showGroup parameter is set to YES). Starting with OS X v10.4, the sheet displays the leaf certificate (that is, the first certificate in the array you pass) plus any other certificates in the certificate chain that the Security Server can find. If you include all of the certificates in the chain in the certificates parameter, you can ensure that the same certificates are displayed whatever the version of the operating system, and may decrease the time required to find and display the certificates in OS X v10.4 and later.
The delegate method has the following signature:
-(void)certificateSheetDidEnd:(NSWindow *)sheet |
returnCode:(NSInteger)returnCode |
contextInfo:(void *)contextInfo |
The parameters for the delegate method are:
- sheet
The window to which the sheet was attached.
- returnCode
The result code indicating which button the user clicked: either
NSFileHandlingPanelOKButtonorNSFileHandlingPanelCancelButton.- contextInfo
Client-defined contextual data that is passed in the
contextInfoparameter of thebeginSheetForDirectory:...method.
The delegate method may dismiss the keychain settings sheet itself; if it does not, the sheet is dismissed on return from the beginSheetForDirectory:... method.
Availability
- Available in OS X v10.3 and later.
See Also
Declared In
SFCertificatePanel.hbeginSheetForWindow:modalDelegate:didEndSelector:contextInfo:trust:showGroup:
Displays a certificate chain in a modal sheet.
Parameters
- docWindow
The parent window to which the sheet is attached.
- delegate
The delegate object in which the method specified in the
didEndSelectorparameter is implemented.- didEndSelector
A selector for a delegate method called when the sheet has been dismissed. Implementation of this delegate method is optional.
- contextInfo
A pointer to data that is passed to the delegate method. You can use this data pointer for any purpose you wish.
- trust
A
SecTrustRefobject for the certificates to be displayed.- showGroup
Specifies whether additional certificates (other than the leaf certificate) are displayed.
Discussion
The sheet displays the leaf certificate plus any other certificates in the certificate chain that the Security Server can find.
The delegate method has the following signature:
-(void)certificateSheetDidEnd:(NSWindow *)sheet |
returnCode:(NSInteger)returnCode |
contextInfo:(void *)contextInfo |
The parameters for the delegate method are:
- sheet
The window to which the sheet was attached.
- returnCode
The result code indicating which button the user clicked: either
NSFileHandlingPanelOKButtonorNSFileHandlingPanelCancelButton.- contextInfo
Client-defined contextual data that is passed in the
contextInfoparameter of thebeginSheetForDirectory:...method.
The delegate method may dismiss the keychain settings sheet itself; if it does not, the sheet is dismissed on return from the beginSheetForDirectory:... method.
Availability
- Available in OS X v10.5 and later.
Declared In
SFCertificatePanel.hcertificateView
Returns the SFCertificateView instance for the modal panel.
Availability
- Available in OS X v10.5 and later.
Declared In
SFCertificatePanel.hhelpAnchor
Returns the current help anchor string for the sheet or panel.
Availability
- OS X v10.4
See Also
Declared In
SFCertificatePanel.hpolicies
Returns an array of policies used to evaluate the status of the displayed certificates.
Discussion
This method returns an autoreleased NSArray containing one or more objects of type SecPolicyRef , as set by a previous setPolicies: call, or the Apple X.509 Basic Policy if setPolicies: has not been called. See “AppleX509TP Trust Policies” in Certificate, Key, and Trust Services Reference for a list of policies and object identifiers provided by the AppleX509TP module.
Availability
- OS X v10.4
See Also
Declared In
SFCertificatePanel.hrunModalForCertificates:showGroup:
Displays one or more specified certificates in a modal panel.
Parameters
- certificates
The certificates to display. Pass an NSArray containing one or more objects of type
SecCertificateRefin this parameter. The first certificate in the array must be the leaf certificate. The other certificates (if any) can be included in any order.- showGroup
Specifies whether additional certificates (other than the leaf certificate) are displayed. To show only a single certificate, specify only one
SecCertificateRefin the array and setshowGrouptoNO.
Return Value
This method returns the integer constant NSOKButton when dismissed.
Discussion
The behavior of this method is somewhat different in OS X v10.4 and later versus OS X v10.3. In OS X v10.3, the panel displays whatever certificates you pass in the certificates parameter (provided the showGroup parameter is set to YES). Starting with OS X v10.4, the panel displays the leaf certificate (that is, the first certificate in the array you pass) plus any other certificates in the certificate chain that the Security Server can find. If you include all of the certificates in the chain in the certificates parameter, you can ensure that the same certificates are displayed whatever the version of the operating system, and may decrease the time required to find and display the certificates in OS X v10.4 and later.
Availability
- Available in OS X v10.3 and later.
Declared In
SFCertificatePanel.hrunModalForTrust:showGroup:
Displays a certificate chain in a modal panel.
Parameters
- trust
A
SecTrustRefobject associated with the certificate chain to display.- showGroup
Specifies whether additional certificates (other than the leaf certificate) are displayed. To show only a single certificate, specify only one
SecCertificateRefin the array and setshowGrouptoNO.
Return Value
This method returns the integer constant NSOKButton when dismissed.
Availability
- Available in OS X v10.5 and later.
Declared In
SFCertificatePanel.hsetAlternateButtonTitle:
Customizes the title of the alternate button.
Parameters
- title
The new title for the alternate button. If this method is not called, or if
titleis set tonil, the button is not shown.
Discussion
The alternate button is typically labelled “Cancel”. The alternate button dismisses the sheet or panel and returns a value of NSCancelButton.
Availability
- OS X v10.4
Declared In
SFCertificatePanel.hsetDefaultButtonTitle:
Customizes the title of the default button.
Parameters
- title
The new title for the default button. The default title for this button is “OK”.
Discussion
The default button dismisses the sheet or panel and returns a value of NSOKButton.
Availability
- OS X v10.4
See Also
Declared In
SFCertificatePanel.hsetHelpAnchor:
Sets the help anchor string for the sheet or modal panel.
Parameters
- anchor
The new help anchor string.
Discussion
You may call this function to set a help anchor string if you display a help button in the sheet or modal panel and do not implement the delegate method certificatePanelShowHelp:, or if the delegate method returns NO. If you display a help button, do not set a help anchor string, and do not implement a delegate, the certificate panel displays a default help page (“Why isn’t a certificate being accepted?”).
Availability
- OS X v10.4
Declared In
SFCertificatePanel.hsetPolicies:
Specifies one or more policies that apply to the displayed certificates.
Parameters
- policies
The policies to use when evaluating the certificates’ status. You can pass either a
SecPolicyRefobject or an NSArray (containing one or moreSecPolicyRefinstances) in this parameter. Ifpoliciesis set tonil, the Apple X.509 Basic Policy is used.
Discussion
Applications typically display a certificate panel in the context of a specific use, such as SSL or S/MIME. You should set only the policy references that apply to your intended use. See “AppleX509TP Trust Policies” for a list of policies and object identifiers provided by the AppleX509TP module.
Availability
- OS X v10.4
See Also
Declared In
SFCertificatePanel.hsetShowsHelp:
Displays a Help button in the sheet or panel.
Parameters
- showsHelp
Set to
YESto display the help button. The help button is hidden by default.
Discussion
When a user clicks the help button, the certificate panel first checks the delegate for a certificatePanelShowHelp: method. If the delegate does not implement such a method, or the delegate method returns NO, then the NSHelpManager method openHelpAnchor:inBook: is called with a nil book and the anchor specified by the setHelpAnchor: method. An exception is raised if the delegate returns NO and there is no help anchor set.
Availability
- OS X v10.4
See Also
Declared In
SFCertificatePanel.hDelegate Methods
certificatePanelShowHelp:
Implements custom help behavior for the modal panel.
Parameters
- sender
The certificate panel for which to implement custom help.
Discussion
You can use this delegate method to implement custom help if you call the setShowsHelp: method to display a help button in the sheet or panel. If you are not implementing custom help, do not implement this method.
Availability
- OS X v10.4
See Also
-
– setShowsHelp: -
setDelegate:(NSWindow)
Declared In
SFCertificatePanel.h© 2012 Apple Inc. All Rights Reserved. (Last updated: 2012-06-11)