HashBase

class HashBase

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

  • Declaration

    Swift

    static let size: Int
  • Message to be converted into a MD5 string

    Declaration

    Swift

    let message: [UInt8]
  • Constructor

    Declaration

    Swift

    init(_ message: [UInt8])
  • Common part for hash calculation. Prepare header data.

    Declaration

    Swift

    func prepare(_ len: Int) -> [UInt8]