| 12345678910111213141516171819202122232425262728293031323334 |
- { *********************************************************************************** }
- { * 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 ClpIDHKeyPairGenerator;
- {$I ..\Include\CryptoLib.inc}
- interface
- uses
- ClpIAsymmetricCipherKeyPairGenerator;
- type
- IDHKeyPairGenerator = interface(IAsymmetricCipherKeyPairGenerator)
- ['{016112AA-A9AD-43E3-A3AA-25428682396F}']
- end;
- implementation
- end.
|