NoPadding.swift 1.2 KB

1234567891011121314151617181920212223242526272829
  1. //
  2. // NoPadding.swift
  3. // CryptoSwift
  4. //
  5. // Copyright (C) 2014-2017 Marcin Krzyżanowski <marcin@krzyzanowskim.com>
  6. // This software is provided 'as-is', without any express or implied warranty.
  7. //
  8. // In no event will the authors be held liable for any damages arising from the use of this software.
  9. //
  10. // Permission is granted to anyone to use this software for any purpose,including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
  11. //
  12. // - The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation is required.
  13. // - Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
  14. // - This notice may not be removed or altered from any source or binary distribution.
  15. //
  16. struct NoPadding: PaddingProtocol {
  17. init() {
  18. }
  19. func add(to data: Array<UInt8>, blockSize _: Int) -> Array<UInt8> {
  20. return data
  21. }
  22. func remove(from data: Array<UInt8>, blockSize _: Int?) -> Array<UInt8> {
  23. return data
  24. }
  25. }