AEAD.swift 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // AEAD.swift
  3. // CryptoSwift
  4. //
  5. // Copyright (C) 2014-2025 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. //
  17. // https://www.iana.org/assignments/aead-parameters/aead-parameters.xhtml
  18. /// Authenticated Encryption with Associated Data (AEAD)
  19. public protocol AEAD {
  20. static var kLen: Int { get } // key length
  21. static var ivRange: Range<Int> { get } // nonce length
  22. }
  23. extension AEAD {
  24. static func calculateAuthenticationTag(authenticator: Authenticator, cipherText: Array<UInt8>, authenticationHeader: Array<UInt8>) throws -> Array<UInt8> {
  25. let headerPadding = ((16 - (authenticationHeader.count & 0xf)) & 0xf)
  26. let cipherPadding = ((16 - (cipherText.count & 0xf)) & 0xf)
  27. var mac = authenticationHeader
  28. mac += Array<UInt8>(repeating: 0, count: headerPadding)
  29. mac += cipherText
  30. mac += Array<UInt8>(repeating: 0, count: cipherPadding)
  31. mac += UInt64(bigEndian: UInt64(authenticationHeader.count)).bytes()
  32. mac += UInt64(bigEndian: UInt64(cipherText.count)).bytes()
  33. return try authenticator.authenticate(mac)
  34. }
  35. }