Swiftpack.co - Alja7dali/swift-base16 as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by Alja7dali.
Alja7dali/swift-base16 1.0.0
A base16 implementation in swift
⭐️ 0
🕓 3 years ago
.package(url: "https://github.com/Alja7dali/swift-base16.git", from: "1.0.0")
This is an implementation of Base16 aka Hex encode/decode algorithm.

Example:

import Base16

/// Encoding to Base16
/// 1. convert string to bytes (utf8 format)
let bytes = "Hello, World!".makeBytes()
/// 2. encode bytes using base16 algorithm, by default the encoded bytes will be lowercased
let encodedBytes = Base16.encode(bytes, uppercased: true)
/// 3. converting bytes back to string
let encodedString = try String(encoded) // "48656C6C6F2C20576F726C6421"


/// Decoding from Base16
/// 1. convert string to bytes (utf8 format)
let bytes = "48656C6C6F2C20576F726C6421".makeBytes()
/// 2. decode bytes using base16 algorithm
let decodedBytes = try Base16.decode(bytes)
/// 3. converting bytes back to string
let decodedString = try String(encoded) // "Hello, World!"

Importing Base16:

To include Base16 in your project, you need to add the following to the dependencies attribute defined in your Package.swift file.

dependencies: [
  .package(url: "https://github.com/alja7dali/swift-base16.git", from: "1.0.0")
]

GitHub

link
Stars: 0
Last commit: 3 years ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

1.0.0
3 years ago

👋 hello, base16!

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics