| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- { *********************************************************************************** }
- { * CryptoLib Library * }
- { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
- { * Github Repository <https://github.com/Xor-el> * }
- { * Distributed under the MIT software license, see the accompanying file LICENSE * }
- { * or visit http://www.opensource.org/licenses/mit-license.php. * }
- { * Acknowledgements: * }
- { * * }
- { * Thanks to Sphere 10 Software (http://www.sphere10.com/) for sponsoring * }
- { * development of this library * }
- { * ******************************************************************************* * }
- (* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& *)
- unit ClpIDsaParameter;
- {$I ..\Include\CryptoLib.inc}
- interface
- uses
- ClpIAsn1Objects,
- ClpBigInteger;
- type
- IDsaParameter = interface(IAsn1Encodable)
- ['{037E0113-0BD6-4A61-8BDC-DBEBE6136A6C}']
- function GetP: TBigInteger;
- property p: TBigInteger read GetP;
- function GetG: TBigInteger;
- property g: TBigInteger read GetG;
- function GetQ: TBigInteger;
- property q: TBigInteger read GetQ;
- end;
- implementation
- end.
|