ClpIBerBitString.pas 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. { *********************************************************************************** }
  2. { * CryptoLib Library * }
  3. { * Copyright (c) 2018 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://sphere10.com) for sponsoring * }
  10. { * the development of this library * }
  11. { * ******************************************************************************* * }
  12. (* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& *)
  13. unit ClpIBerBitString;
  14. {$I ..\Include\CryptoLib.inc}
  15. interface
  16. uses
  17. ClpIProxiedInterface,
  18. ClpIDerBitString;
  19. type
  20. IBerBitString = interface(IDerBitString)
  21. ['{6AB7DC7E-CD61-4D34-AE15-99E036688C77}']
  22. procedure Encode(const derOut: IDerOutputStream);
  23. end;
  24. implementation
  25. end.