BytesSequence

struct BytesSequence : Sequence

Bytes sequence for the implementation of MD5 The following is an altered source version that only includes MD5. The original software can be found at: https://github.com/krzyzanowskim/CryptoSwift

  • Chunk size

    Declaration

    Swift

    let chunkSize: Int
  • Data

    Declaration

    Swift

    let data: [UInt8]
  • makeIterator

    Declaration

    Swift

    func makeIterator() -> AnyIterator<ArraySlice<UInt8>>