Int+Extension.swift 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // CryptoSwift
  3. //
  4. // Created by Marcin Krzyzanowski on 12/08/14.
  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. #if canImport(Darwin)
  17. import Darwin
  18. #elseif canImport(Android)
  19. import Android
  20. #elseif canImport(Glibc)
  21. import Glibc
  22. #elseif canImport(Musl)
  23. import Musl
  24. #elseif canImport(ucrt)
  25. import ucrt
  26. #endif
  27. extension FixedWidthInteger {
  28. @inlinable
  29. func bytes(totalBytes: Int = MemoryLayout<Self>.size) -> Array<UInt8> {
  30. arrayOfBytes(value: self.littleEndian, length: totalBytes)
  31. // TODO: adjust bytes order
  32. // var value = self.littleEndian
  33. // return withUnsafeBytes(of: &value, Array.init).reversed()
  34. }
  35. }