Base64 encoding/decoding. Provides .urlSafe/.standard (iOS compatible) encoding of type Data and decoding of type String. You can, when encoding, ask for padding. When decoding padding is ignored if you choose .urlSafe decoding.
Base64.encode(data, coding: .urlSafe)
Base64.encode(data, coding: .urlSafe, padding: .off)
Base64.encode(data) // .standard is default as is .on for padding
Base64.decode(data, coding: .urlSafe)
Base64.decode(data) // .standard is default
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate Base64 into your Xcode project using Carthage, specify it in your Cartfile
:
github "HHuckebein/HHBase64"
Run carthage
to build the framework and drag the built HHBase64.framework
into your Xcode project.
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift
compiler.
Once you have your Swift package set up, add HHBase64 as a dependency by adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/HHuckebein/HHBase64", .upToNextMajor(from: "1.0.0"))
]
RABE_IT Services, [email protected]
Base64 is available under the MIT license. See the LICENSE file for more info.