ClpIAlgorithmParameterSpec.pas 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. { *********************************************************************************** }
  2. { * CryptoLib Library * }
  3. { * Copyright (c) 2018 - 20XX Ugochukwu Mmaduekwe * }
  4. { * Github Repository <https://github.com/Xor-el> * }
  5. { * Distributed under the MIT software license, see the accompanying file LICENSE * }
  6. { * or visit http://www.opensource.org/licenses/mit-license.php. * }
  7. { * Acknowledgements: * }
  8. { * * }
  9. { * Thanks to Sphere 10 Software (http://www.sphere10.com/) for sponsoring * }
  10. { * development of this library * }
  11. { * ******************************************************************************* * }
  12. (* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& *)
  13. unit ClpIAlgorithmParameterSpec;
  14. {$I CryptoLib.inc}
  15. interface
  16. type
  17. IAlgorithmParameterSpec = interface(IInterface)
  18. ['{FBA69725-AEFF-4B99-92C0-1819E5DE2DA1}']
  19. end;
  20. implementation
  21. end.