macos-mac-address

1.1.2

Obtain the device's MAC address on macOS. Special feature: get the MAC addr that is used by Mac App Store's receipt validation.
ivanmoskalev/macos-mac-address

What's New

1.1.2

2023-04-16T09:06:07Z
  • Added CocoaPods for other crusties like me who like to keep their dependencies' code checked in with their projects (SPM sadly doesn't allow that: if dependency's git repo goes away, you are toast).

MacAddress

CI

MacAddress is a Swift microlibrary for macOS that provides an easy way to obtain the MAC address of a device's network interface. This library is especially useful when working with Mac App Store receipt validation, as it implements the Apple's recommended fallback strategy (en0 builtin → en1 builtin → en0 non-builtin).

Features

  • Retrieve the MAC address of built-in and non-built-in network interfaces
  • Obtain the MAC address as a formatted string
  • App Store receipt validation compatible MAC address retrieval

Requirements

  • macOS 10.13+
  • Swift 5.3+

Installation

Swift Package Manager

Add the following dependency to your Package.swift file:

dependencies: [
    .package(url: "https://github.com/ivanmoskalev/MacAddress.git", from: "1.0.0")
]

Then, add MacAddress to your target's dependencies:

targets: [
    .target(
        name: "YourTarget",
        dependencies: ["MacAddress"]),
]

Usage

import MacAddress

// Get the MAC address of the built-in "en0" network interface
if let macAddress = MacAddress(.builtIn("en0")) {
    print("Built-in MAC address: \(macAddress.stringRepresentation)")
}

// Get the MAC address of the non-built-in "en0" network interface
if let macAddress = MacAddress(.nonBuiltIn("en0")) {
    print("Non-built-in MAC address: \(macAddress.stringRepresentation)")
}

// Get the MAC address compatible with Mac App Store receipt validation
if let macAddress = MacAddress.appStoreCompatible {
    print("App Store compatible MAC address: \(macAddress.stringRepresentation)")
}

Description

  • Swift Tools 5.7.0
View More Packages from this Author

Dependencies

  • None
Last updated: Wed Mar 20 2024 19:51:51 GMT-0900 (Hawaii-Aleutian Daylight Time)