mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 07:45:56 +01:00
ca8bc9dff4
Added the PDS file to extract the HTML Help files using PasDoc Added more XML documentation Fixed some XML errors. Removed the license copy from the pas units. Updated the LICENSE.md file
57 lines
1.1 KiB
ObjectPascal
57 lines
1.1 KiB
ObjectPascal
unit uCEFSslInfo;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE OBJFPC}{$H+}
|
|
{$ENDIF}
|
|
|
|
{$I cef.inc}
|
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
{$MINENUMSIZE 4}
|
|
|
|
interface
|
|
|
|
uses
|
|
{$IFDEF DELPHI16_UP}
|
|
System.Classes,
|
|
{$ELSE}
|
|
Classes,
|
|
{$ENDIF}
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
|
|
|
type
|
|
TCefSslInfoRef = class(TCefBaseRefCountedRef, ICefSslInfo)
|
|
protected
|
|
function GetCertStatus: TCefCertStatus;
|
|
function GetX509Certificate: ICefX509Certificate;
|
|
|
|
public
|
|
class function UnWrap(data: Pointer): ICefSslInfo;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFBinaryValue, uCEFX509Certificate;
|
|
|
|
|
|
function TCefSslInfoRef.GetCertStatus: TCefCertStatus;
|
|
begin
|
|
Result := PCefSslInfo(FData)^.get_cert_status(PCefSslInfo(FData));
|
|
end;
|
|
|
|
function TCefSslInfoRef.GetX509Certificate: ICefX509Certificate;
|
|
begin
|
|
Result := TCEFX509CertificateRef.UnWrap(PCefSslInfo(FData)^.get_x509certificate(PCefSslInfo(FData)));
|
|
end;
|
|
|
|
class function TCefSslInfoRef.UnWrap(data: Pointer): ICefSslInfo;
|
|
begin
|
|
if (data <> nil) then
|
|
Result := Create(data) as ICefSslInfo
|
|
else
|
|
Result := nil;
|
|
end;
|
|
|
|
end.
|