| SYNOPSIS | 
#include <dkim.h>
const char * dkim_getsslbuf(
	DKIM *dkim
);
 
Retrieve from a DKIM handle the SSL error buffer, which will contain
the SSL-specific error string, if any.
 | 
| DESCRIPTION | 
| Called When | 
dkim_getsslbuf() can be called at any time after
    the cryptographic phase of signature processing has occurred, i.e., after
    dkim_eoh().  | 
 
 
 | 
|---|
| ARGUMENTS | 
    
    | Argument | Description |  
    | dkim | 
	DKIM signing handle.
	 |  
     
 | 
| RETURN VALUES | 
    
    | Value | Description |  
    | NULL | 
	No error message was recorded.
	 |  
    | otherwise | 
	A pointer to the SSL error message recorded for the provided
	    signing handle.
	 |  
     
 | 
| NOTES |  
 |