2017-01-27 16:37:51 +01:00
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ***************************** CEF4Delphi *******************************
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
//
|
|
|
|
|
// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based
|
|
|
|
|
// browser in Delphi applications.
|
|
|
|
|
//
|
|
|
|
|
// The original license of DCEF3 still applies to CEF4Delphi.
|
|
|
|
|
//
|
|
|
|
|
// For more information about CEF4Delphi visit :
|
|
|
|
|
// https://www.briskbard.com/index.php?lang=en&pageid=cef
|
|
|
|
|
//
|
|
|
|
|
// Copyright <20> 2017 Salvador D<>az Fau. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
// ************ vvvv Original license and comments below vvvv *************
|
|
|
|
|
// ************************************************************************
|
|
|
|
|
(*
|
|
|
|
|
* Delphi Chromium Embedded 3
|
|
|
|
|
*
|
|
|
|
|
* Usage allowed under the restrictions of the Lesser GNU General Public License
|
|
|
|
|
* or alternatively the restrictions of the Mozilla Public License 1.1
|
|
|
|
|
*
|
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
|
|
|
|
|
* the specific language governing rights and limitations under the License.
|
|
|
|
|
*
|
|
|
|
|
* Unit owner : Henri Gourvest <hgourvest@gmail.com>
|
|
|
|
|
* Web site : http://www.progdigy.com
|
|
|
|
|
* Repository : http://code.google.com/p/delphichromiumembedded/
|
|
|
|
|
* Group : http://groups.google.com/group/delphichromiumembedded
|
|
|
|
|
*
|
|
|
|
|
* Embarcadero Technologies, Inc is not permitted to use or redistribute
|
|
|
|
|
* this source code without explicit permission.
|
|
|
|
|
*
|
|
|
|
|
*)
|
|
|
|
|
|
|
|
|
|
unit uCEFX509Certificate;
|
|
|
|
|
|
|
|
|
|
{$IFNDEF CPUX64}
|
|
|
|
|
{$ALIGN ON}
|
|
|
|
|
{$MINENUMSIZE 4}
|
|
|
|
|
{$ENDIF}
|
|
|
|
|
|
2017-02-05 20:56:46 +01:00
|
|
|
|
{$I cef.inc}
|
|
|
|
|
|
2017-01-27 16:37:51 +01:00
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
2017-02-05 20:56:46 +01:00
|
|
|
|
{$IFDEF DELPHI16_UP}
|
2017-06-13 19:12:40 +02:00
|
|
|
|
System.Classes, System.SysUtils,
|
2017-02-05 20:56:46 +01:00
|
|
|
|
{$ELSE}
|
2017-06-13 19:12:40 +02:00
|
|
|
|
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
|
|
|
|
|
function GetSubject: ICefX509CertPrincipal;
|
|
|
|
|
function GetIssuer: ICefX509CertPrincipal;
|
|
|
|
|
function GetSerialNumber: ICefBinaryValue;
|
|
|
|
|
function GetValidStart: TCefTime;
|
|
|
|
|
function GetValidExpiry: TCefTime;
|
|
|
|
|
function GetDerEncoded: ICefBinaryValue;
|
|
|
|
|
function GetPemEncoded: ICefBinaryValue;
|
|
|
|
|
function GetIssuerChainSize: NativeUInt;
|
|
|
|
|
function GetDEREncodedIssuerChain(chainCount: NativeUInt): IInterfaceList;
|
|
|
|
|
function GetPEMEncodedIssuerChain(chainCount: NativeUInt): IInterfaceList;
|
|
|
|
|
|
|
|
|
|
public
|
|
|
|
|
class function UnWrap(data: Pointer): ICefX509Certificate;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
uCEFMiscFunctions, uCEFLibFunctions, uCEFBinaryValue, uCEFX509CertPrincipal;
|
|
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetSubject: ICefX509CertPrincipal;
|
|
|
|
|
begin
|
|
|
|
|
Result := TCefX509CertPrincipalRef.UnWrap(PCefX509Certificate(FData).get_subject(FData));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetIssuer: ICefX509CertPrincipal;
|
|
|
|
|
begin
|
|
|
|
|
Result := TCefX509CertPrincipalRef.UnWrap(PCefX509Certificate(FData).get_issuer(FData));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetSerialNumber: ICefBinaryValue;
|
|
|
|
|
begin
|
|
|
|
|
Result := TCefBinaryValueRef.UnWrap(PCefX509Certificate(FData).get_serial_number(FData));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetValidStart: TCefTime;
|
|
|
|
|
begin
|
|
|
|
|
Result := PCefX509Certificate(FData).get_valid_start(FData);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetValidExpiry: TCefTime;
|
|
|
|
|
begin
|
|
|
|
|
Result := PCefX509Certificate(FData).get_valid_expiry(FData);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetDerEncoded: ICefBinaryValue;
|
|
|
|
|
begin
|
|
|
|
|
Result := TCefBinaryValueRef.UnWrap(PCefX509Certificate(FData).get_derencoded(FData));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetPemEncoded: ICefBinaryValue;
|
|
|
|
|
begin
|
|
|
|
|
Result := TCefBinaryValueRef.UnWrap(PCefX509Certificate(FData).get_pemencoded(FData));
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetIssuerChainSize: NativeUInt;
|
|
|
|
|
begin
|
|
|
|
|
Result := PCefX509Certificate(FData).get_issuer_chain_size(FData);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetDEREncodedIssuerChain(chainCount: NativeUInt): IInterfaceList;
|
|
|
|
|
var
|
2017-06-13 19:12:40 +02:00
|
|
|
|
TempArray : PPCefBinaryValue;
|
|
|
|
|
i : NativeUInt;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-06-13 19:12:40 +02:00
|
|
|
|
Result := nil;
|
|
|
|
|
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
|
|
|
|
|
GetMem(TempArray, chainCount * SizeOf(Pointer));
|
|
|
|
|
|
|
|
|
|
PCefX509Certificate(FData).get_derencoded_issuer_chain(FData, chainCount, TempArray);
|
|
|
|
|
|
|
|
|
|
if (chainCount > 0) then
|
|
|
|
|
begin
|
|
|
|
|
i := 0;
|
|
|
|
|
Result := TInterfaceList.Create;
|
|
|
|
|
|
|
|
|
|
while (i < chainCount) do
|
|
|
|
|
begin
|
|
|
|
|
Result.Add(TCefBinaryValueRef.UnWrap(PPointerArray(TempArray)[i]));
|
|
|
|
|
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-06-13 19:12:40 +02:00
|
|
|
|
if (TempArray <> nil) then FreeMem(TempArray);
|
2017-01-27 16:37:51 +01:00
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TCEFX509CertificateRef.GetPEMEncodedIssuerChain(chainCount: NativeUInt): IInterfaceList;
|
|
|
|
|
var
|
2017-06-13 19:12:40 +02:00
|
|
|
|
TempArray : PPCefBinaryValue;
|
|
|
|
|
i : NativeUInt;
|
2017-01-27 16:37:51 +01:00
|
|
|
|
begin
|
2017-06-13 19:12:40 +02:00
|
|
|
|
Result := nil;
|
|
|
|
|
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
|
|
|
|
|
GetMem(TempArray, chainCount * SizeOf(Pointer));
|
|
|
|
|
|
|
|
|
|
PCefX509Certificate(FData).get_pemencoded_issuer_chain(FData, chainCount, TempArray);
|
|
|
|
|
|
|
|
|
|
if (chainCount > 0) then
|
|
|
|
|
begin
|
|
|
|
|
i := 0;
|
|
|
|
|
Result := TInterfaceList.Create;
|
|
|
|
|
|
|
|
|
|
while (i < chainCount) do
|
|
|
|
|
begin
|
|
|
|
|
Result.Add(TCefBinaryValueRef.UnWrap(PPointerArray(TempArray)[i]));
|
|
|
|
|
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-06-13 19:12:40 +02:00
|
|
|
|
if (TempArray <> nil) then FreeMem(TempArray);
|
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.
|