2017-01-27 16:37:51 +01:00
|
|
|
unit uCEFX509Certificate;
|
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
{$IFDEF FPC}
|
|
|
|
{$MODE OBJFPC}{$H+}
|
|
|
|
{$ENDIF}
|
|
|
|
|
2017-02-05 20:56:46 +01:00
|
|
|
{$I cef.inc}
|
|
|
|
|
2022-02-19 18:56:41 +01:00
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
|
|
{$MINENUMSIZE 4}
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2017-02-05 20:56:46 +01:00
|
|
|
{$IFDEF DELPHI16_UP}
|
2018-06-03 17:18:54 +02:00
|
|
|
{$IFDEF MSWINDOWS}WinApi.Windows,{$ENDIF} System.Classes, System.SysUtils,
|
2017-02-05 20:56:46 +01:00
|
|
|
{$ELSE}
|
2018-06-03 17:18:54 +02:00
|
|
|
{$IFDEF MSWINDOWS}Windows,{$ENDIF} Classes, SysUtils,
|
2017-02-05 20:56:46 +01:00
|
|
|
{$ENDIF}
|
2017-03-16 19:09:42 +01:00
|
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
type
|
2017-03-16 19:09:42 +01:00
|
|
|
TCEFX509CertificateRef = class(TCefBaseRefCountedRef, ICefX509Certificate)
|
2017-01-27 16:37:51 +01:00
|
|
|
protected
|
2018-05-12 14:50:54 +02:00
|
|
|
function GetSubject: ICefX509CertPrincipal;
|
|
|
|
function GetIssuer: ICefX509CertPrincipal;
|
|
|
|
function GetSerialNumber: ICefBinaryValue;
|
2022-09-04 19:18:07 +02:00
|
|
|
function GetValidStart: TCefBaseTime;
|
|
|
|
function GetValidExpiry: TCefBaseTime;
|
|
|
|
function GetValidStartAsDateTime: TDateTime;
|
|
|
|
function GetValidExpiryAsDateTime: TDateTime;
|
2018-05-12 14:50:54 +02:00
|
|
|
function GetDerEncoded: ICefBinaryValue;
|
|
|
|
function GetPemEncoded: ICefBinaryValue;
|
|
|
|
function GetIssuerChainSize: NativeUInt;
|
2017-07-25 12:25:20 +02:00
|
|
|
procedure GetDEREncodedIssuerChain(chainCount: NativeUInt; var chain : TCefBinaryValueArray);
|
|
|
|
procedure GetPEMEncodedIssuerChain(chainCount: NativeUInt; var chain : TCefBinaryValueArray);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
|
|
|
public
|
|
|
|
class function UnWrap(data: Pointer): ICefX509Certificate;
|
|
|
|
end;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFBinaryValue, uCEFX509CertPrincipal;
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetSubject: ICefX509CertPrincipal;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := TCefX509CertPrincipalRef.UnWrap(PCefX509Certificate(FData)^.get_subject(PCefX509Certificate(FData)));
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetIssuer: ICefX509CertPrincipal;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := TCefX509CertPrincipalRef.UnWrap(PCefX509Certificate(FData)^.get_issuer(PCefX509Certificate(FData)));
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetSerialNumber: ICefBinaryValue;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := TCefBinaryValueRef.UnWrap(PCefX509Certificate(FData)^.get_serial_number(PCefX509Certificate(FData)));
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2022-09-04 19:18:07 +02:00
|
|
|
function TCEFX509CertificateRef.GetValidStart: TCefBaseTime;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := PCefX509Certificate(FData)^.get_valid_start(PCefX509Certificate(FData));
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2022-09-04 19:18:07 +02:00
|
|
|
function TCEFX509CertificateRef.GetValidExpiry: TCefBaseTime;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := PCefX509Certificate(FData)^.get_valid_expiry(PCefX509Certificate(FData));
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2022-09-04 19:18:07 +02:00
|
|
|
function TCEFX509CertificateRef.GetValidStartAsDateTime: TDateTime;
|
|
|
|
begin
|
|
|
|
Result := CefBaseTimeToDateTime(GetValidStart);
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetValidExpiryAsDateTime: TDateTime;
|
|
|
|
begin
|
|
|
|
Result := CefBaseTimeToDateTime(GetValidExpiry);
|
|
|
|
end;
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
function TCEFX509CertificateRef.GetDerEncoded: ICefBinaryValue;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := TCefBinaryValueRef.UnWrap(PCefX509Certificate(FData)^.get_derencoded(PCefX509Certificate(FData)));
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetPemEncoded: ICefBinaryValue;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := TCefBinaryValueRef.UnWrap(PCefX509Certificate(FData)^.get_pemencoded(PCefX509Certificate(FData)));
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetIssuerChainSize: NativeUInt;
|
|
|
|
begin
|
2018-05-12 14:50:54 +02:00
|
|
|
Result := PCefX509Certificate(FData)^.get_issuer_chain_size(PCefX509Certificate(FData));
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
|
2017-07-25 12:25:20 +02:00
|
|
|
procedure TCEFX509CertificateRef.GetDEREncodedIssuerChain(chainCount: NativeUInt; var chain : TCefBinaryValueArray);
|
2017-01-27 16:37:51 +01:00
|
|
|
var
|
2017-07-25 12:25:20 +02:00
|
|
|
TempArray : array of PCefBinaryValue;
|
2017-06-13 19:12:40 +02:00
|
|
|
i : NativeUInt;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2017-06-13 19:12:40 +02:00
|
|
|
TempArray := nil;
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
try
|
2017-06-13 19:12:40 +02:00
|
|
|
try
|
|
|
|
if (chainCount > 0) then
|
|
|
|
begin
|
2017-07-25 12:25:20 +02:00
|
|
|
SetLength(TempArray, chainCount);
|
2017-06-13 19:12:40 +02:00
|
|
|
|
2017-07-25 12:25:20 +02:00
|
|
|
i := 0;
|
|
|
|
while (i < chainCount) do
|
|
|
|
begin
|
|
|
|
TempArray[i] := nil;
|
|
|
|
inc(i);
|
|
|
|
end;
|
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
PCefX509Certificate(FData)^.get_derencoded_issuer_chain(PCefX509Certificate(FData), chainCount, TempArray[0]);
|
2017-06-13 19:12:40 +02:00
|
|
|
|
|
|
|
if (chainCount > 0) then
|
|
|
|
begin
|
2017-07-25 12:25:20 +02:00
|
|
|
SetLength(chain, chainCount);
|
2017-06-13 19:12:40 +02:00
|
|
|
|
2017-07-25 12:25:20 +02:00
|
|
|
i := 0;
|
2017-06-13 19:12:40 +02:00
|
|
|
while (i < chainCount) do
|
|
|
|
begin
|
2017-07-25 12:25:20 +02:00
|
|
|
chain[i] := TCefBinaryValueRef.UnWrap(TempArray[i]);
|
2017-06-13 19:12:40 +02:00
|
|
|
inc(i);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCEFX509CertificateRef.GetDEREncodedIssuerChain', e) then raise;
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
finally
|
2017-07-25 12:25:20 +02:00
|
|
|
if (TempArray <> nil) then
|
|
|
|
begin
|
|
|
|
Finalize(TempArray);
|
|
|
|
TempArray := nil;
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
2017-07-25 12:25:20 +02:00
|
|
|
procedure TCEFX509CertificateRef.GetPEMEncodedIssuerChain(chainCount: NativeUInt; var chain : TCefBinaryValueArray);
|
2017-01-27 16:37:51 +01:00
|
|
|
var
|
2017-07-25 12:25:20 +02:00
|
|
|
TempArray : array of PCefBinaryValue;
|
2017-06-13 19:12:40 +02:00
|
|
|
i : NativeUInt;
|
2017-01-27 16:37:51 +01:00
|
|
|
begin
|
2017-06-13 19:12:40 +02:00
|
|
|
TempArray := nil;
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
try
|
2017-06-13 19:12:40 +02:00
|
|
|
try
|
|
|
|
if (chainCount > 0) then
|
|
|
|
begin
|
2017-07-25 12:25:20 +02:00
|
|
|
SetLength(TempArray, chainCount);
|
|
|
|
|
|
|
|
i := 0;
|
|
|
|
while (i < chainCount) do
|
|
|
|
begin
|
|
|
|
TempArray[i] := nil;
|
|
|
|
inc(i);
|
|
|
|
end;
|
2017-06-13 19:12:40 +02:00
|
|
|
|
2018-05-12 14:50:54 +02:00
|
|
|
PCefX509Certificate(FData)^.get_pemencoded_issuer_chain(PCefX509Certificate(FData), chainCount, TempArray[0]);
|
2017-06-13 19:12:40 +02:00
|
|
|
|
|
|
|
if (chainCount > 0) then
|
|
|
|
begin
|
2017-07-25 12:25:20 +02:00
|
|
|
SetLength(chain, chainCount);
|
2017-06-13 19:12:40 +02:00
|
|
|
|
2017-07-25 12:25:20 +02:00
|
|
|
i := 0;
|
2017-06-13 19:12:40 +02:00
|
|
|
while (i < chainCount) do
|
|
|
|
begin
|
2017-07-25 12:25:20 +02:00
|
|
|
chain[i] := TCefBinaryValueRef.UnWrap(TempArray[i]);
|
2017-06-13 19:12:40 +02:00
|
|
|
inc(i);
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
except
|
|
|
|
on e : exception do
|
|
|
|
if CustomExceptionHandler('TCEFX509CertificateRef.GetPEMEncodedIssuerChain', e) then raise;
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
finally
|
2017-07-25 12:25:20 +02:00
|
|
|
if (TempArray <> nil) then
|
|
|
|
begin
|
|
|
|
Finalize(TempArray);
|
|
|
|
TempArray := nil;
|
|
|
|
end;
|
2017-01-27 16:37:51 +01:00
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
class function TCEFX509CertificateRef.UnWrap(data: Pointer): ICefX509Certificate;
|
|
|
|
begin
|
|
|
|
if (data <> nil) then
|
|
|
|
Result := Create(data) as ICefX509Certificate
|
|
|
|
else
|
|
|
|
Result := nil;
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|