MD5

class MD5 : HashBase

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

  • s

    specifies the per-round shift amounts

    Declaration

    Swift

    private let s: [UInt32]
  • k

    binary integer part of the sines of integers (Radians)

    Declaration

    Swift

    private let k: [UInt32]
  • h

    H

    Declaration

    Swift

    private let h: [UInt32]
  • Calculates the MD5 as an array of UInt8

    Declaration

    Swift

    func calculate() -> [UInt8]