gitextract_0ksah8ot/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .slather.yml ├── .swift-version ├── .travis.yml ├── CONTRIBUTING.md ├── Example/ │ └── SwiftHashDemo/ │ ├── Podfile │ ├── SwiftHashDemo/ │ │ ├── Base.lproj/ │ │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── Resources/ │ │ │ └── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ └── Sources/ │ │ ├── AppDelegate.swift │ │ └── ViewController.swift │ └── SwiftHashDemo.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── SwiftHashDemo.xcscheme ├── LICENSE.md ├── Package.swift ├── Package@swift-4.swift ├── Playground-Mac.playground/ │ ├── Contents.swift │ ├── contents.xcplayground │ └── timeline.xctimeline ├── Playground-iOS.playground/ │ ├── Contents.swift │ ├── contents.xcplayground │ └── timeline.xctimeline ├── README.md ├── Sources/ │ ├── MD5.swift │ └── SHA1.swift ├── SwiftHash/ │ ├── Info-Mac.plist │ ├── Info-iOS.plist │ ├── Info-tvOS.plist │ └── Info-watchOS.plist ├── SwiftHash.podspec ├── SwiftHash.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ ├── SwiftHash-Mac.xcscheme │ ├── SwiftHash-iOS.xcscheme │ ├── SwiftHash-tvOS.xcscheme │ └── SwiftHash-watchOS.xcscheme ├── SwiftHashTests/ │ ├── Fixture/ │ │ └── naughty_strings.txt │ ├── Info-Mac.plist │ ├── Info-iOS.plist │ ├── Info-tvOS.plist │ └── Tests.swift └── script.sh