asn1util.pas - INT64 support in ASNEncInt and ASNItem.

git-svn-id: https://svn.code.sf.net/p/synalist/code/trunk@175 7c85be65-684b-0410-a082-b2ed4fbef004
This commit is contained in:
geby 2013-02-05 16:16:35 +00:00
parent b153e2469b
commit b3a48acebb

View File

@ -1,9 +1,9 @@
{==============================================================================| {==============================================================================|
| Project : Ararat Synapse | 001.004.004 | | Project : Ararat Synapse | 002.000.000 |
|==============================================================================| |==============================================================================|
| Content: support for ASN.1 BER coding and decoding | | Content: support for ASN.1 BER coding and decoding |
|==============================================================================| |==============================================================================|
| Copyright (c)1999-2003, Lukas Gebauer | | Copyright (c)1999-2013, Lukas Gebauer |
| All rights reserved. | | All rights reserved. |
| | | |
| Redistribution and use in source and binary forms, with or without | | Redistribution and use in source and binary forms, with or without |
@ -33,7 +33,7 @@
| DAMAGE. | | DAMAGE. |
|==============================================================================| |==============================================================================|
| The Initial Developer of the Original Code is Lukas Gebauer (Czech Republic).| | The Initial Developer of the Original Code is Lukas Gebauer (Czech Republic).|
| Portions created by Lukas Gebauer are Copyright (c) 1999-2003 | | Portions created by Lukas Gebauer are Copyright (c) 1999-2013 |
| Portions created by Hernan Sanchez are Copyright (c) 2000. | | Portions created by Hernan Sanchez are Copyright (c) 2000. |
| All Rights Reserved. | | All Rights Reserved. |
|==============================================================================| |==============================================================================|
@ -103,7 +103,7 @@ function ASNEncLen(Len: Integer): AnsiString;
function ASNDecLen(var Start: Integer; const Buffer: AnsiString): Integer; function ASNDecLen(var Start: Integer; const Buffer: AnsiString): Integer;
{:Encodes a signed integer to ASN.1 binary} {:Encodes a signed integer to ASN.1 binary}
function ASNEncInt(Value: Integer): AnsiString; function ASNEncInt(Value: Int64): AnsiString;
{:Encodes unsigned integer into ASN.1 binary} {:Encodes unsigned integer into ASN.1 binary}
function ASNEncUInt(Value: Integer): AnsiString; function ASNEncUInt(Value: Integer): AnsiString;
@ -214,23 +214,28 @@ begin
end; end;
{==============================================================================} {==============================================================================}
function ASNEncInt(Value: Integer): AnsiString; function ASNEncInt(Value: Int64): AnsiString;
var var
x, y: Cardinal; x: Int64;
y: byte;
neg: Boolean; neg: Boolean;
begin begin
neg := Value < 0; neg := Value < 0;
x := Abs(Value); x := Abs(Value);
if neg then if neg then
x := not (x - 1); x := x - 1;
Result := ''; Result := '';
repeat repeat
y := x mod 256; y := x mod 256;
x := x div 256; x := x div 256;
if neg then
y := not y;
Result := AnsiChar(y) + Result; Result := AnsiChar(y) + Result;
until x = 0; until x = 0;
if (not neg) and (Result[1] > #$7F) then if (not neg) and (Result[1] > #$7F) then
Result := #0 + Result; Result := #0 + Result;
if (neg) and (Result[1] < #$80) then
Result := #$FF + Result;
end; end;
{==============================================================================} {==============================================================================}
@ -265,7 +270,8 @@ function ASNItem(var Start: Integer; const Buffer: AnsiString;
var var
ASNType: Integer; ASNType: Integer;
ASNSize: Integer; ASNSize: Integer;
y, n: Integer; y: int64;
n: Integer;
x: byte; x: byte;
s: AnsiString; s: AnsiString;
c: AnsiChar; c: AnsiChar;