├── .gitignore ├── .travis.yml ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── SwiftCrypto │ └── SwiftCrypto.swift └── Tests └── SwiftCryptoTests └── SwiftCryptoTests.swift /.gitignore: -------------------------------------------------------------------------------- 1 | *.xcodeproj 2 | *.xcworkspace 3 | .build/ 4 | 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jernejstrasner/SwiftCrypto/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jernejstrasner/SwiftCrypto/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jernejstrasner/SwiftCrypto/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jernejstrasner/SwiftCrypto/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SwiftCrypto/SwiftCrypto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jernejstrasner/SwiftCrypto/HEAD/Sources/SwiftCrypto/SwiftCrypto.swift -------------------------------------------------------------------------------- /Tests/SwiftCryptoTests/SwiftCryptoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jernejstrasner/SwiftCrypto/HEAD/Tests/SwiftCryptoTests/SwiftCryptoTests.swift --------------------------------------------------------------------------------