IntegerConvertible.swift 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // IntegerConvertible.swift
  3. // CryptoSwift
  4. //
  5. // Copyright (C) 2014-2017 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. protocol BitshiftOperationsType {
  17. static func <<(lhs: Self, rhs: Self) -> Self
  18. static func >>(lhs: Self, rhs: Self) -> Self
  19. static func <<=(lhs: inout Self, rhs: Self)
  20. static func >>=(lhs: inout Self, rhs: Self)
  21. }
  22. protocol ByteConvertible {
  23. init(_ value: UInt8)
  24. init(truncatingBitPattern: UInt64)
  25. }
  26. extension Int: BitshiftOperationsType, ByteConvertible {}
  27. extension Int8: BitshiftOperationsType, ByteConvertible {}
  28. extension Int16: BitshiftOperationsType, ByteConvertible {}
  29. extension Int32: BitshiftOperationsType, ByteConvertible {}
  30. extension Int64: BitshiftOperationsType, ByteConvertible {
  31. init(truncatingBitPattern value: UInt64) {
  32. self = Int64(bitPattern: value)
  33. }
  34. }
  35. extension UInt: BitshiftOperationsType, ByteConvertible {}
  36. extension UInt8: BitshiftOperationsType, ByteConvertible {}
  37. extension UInt16: BitshiftOperationsType, ByteConvertible {}
  38. extension UInt32: BitshiftOperationsType, ByteConvertible {}
  39. extension UInt64: BitshiftOperationsType, ByteConvertible {
  40. init(truncatingBitPattern value: UInt64) {
  41. self = value
  42. }
  43. }