| 123456789101112131415161718192021222324252627282930313233343536 |
- { *********************************************************************************** }
- { * 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 ClpIBufferedStreamCipher;
- {$I ..\Include\CryptoLib.inc}
- interface
- uses
- ClpIBufferedCipherBase;
- type
- IBufferedStreamCipher = interface(IBufferedCipherBase)
- ['{F20A1BF7-4AA6-445C-8218-9EA0DF7FC123}']
- end;
- implementation
- end.
|