CBC.swift 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // CBC.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. // Cipher-block chaining (CBC)
  17. //
  18. struct CBCModeWorker: BlockModeWorker {
  19. typealias Element = Array<UInt8>
  20. let cipherOperation: CipherOperationOnBlock
  21. private let iv: Element
  22. private var prev: Element?
  23. init(iv: Array<UInt8>, cipherOperation: @escaping CipherOperationOnBlock) {
  24. self.iv = iv
  25. self.cipherOperation = cipherOperation
  26. }
  27. mutating func encrypt(_ plaintext: ArraySlice<UInt8>) -> Array<UInt8> {
  28. guard let ciphertext = cipherOperation(xor(prev ?? iv, plaintext)) else {
  29. return Array(plaintext)
  30. }
  31. prev = ciphertext
  32. return ciphertext
  33. }
  34. mutating func decrypt(_ ciphertext: ArraySlice<UInt8>) -> Array<UInt8> {
  35. guard let plaintext = cipherOperation(Array(ciphertext)) else {
  36. return Array(ciphertext)
  37. }
  38. let result = xor(prev ?? iv, plaintext)
  39. prev = Array(ciphertext)
  40. return result
  41. }
  42. }