Instance Method (Default implementation)swift-crypto 3.12.2Crypto
makeIterator
MessageAuthenticationCode.swift:59- iOS
- 13+
- macOS
- 10.15+
- tvOS
- 13+
- watchOS
- 6+
func makeIterator() -> Array<UInt8>.Iterator
func makeIterator() -> Array<UInt8>.Iterator
s6Crypto25MessageAuthenticationCodePAAE12makeIterators08IndexingF0VySays5UInt8VGGyF
What are these?9LU6N
import Crypto
A cryptography library for Swift.
protocol MessageAuthenticationCode : ContiguousBytes, CustomStringConvertible, Hashable, Sequence where Self.Element == UInt8
A type that represents a message authentication code.
@frozen struct Array<Element>
An ordered, random-access collection.
@frozen struct UInt8
An 8-bit unsigned integer value type.
typealias Iterator = IndexingIterator<Array<Element>>
The type that allows iteration over an array’s elements.
func makeIterator() -> Self.Iterator
Returns an iterator over the elements of this sequence.
var description: String { get }
static func == <D>(lhs: Self, rhs: D) -> Bool where D : DataProtocol
Returns a Boolean value indicating whether a message authentication code is equivalent to a collection of binary data.
static func == (lhs: Self, rhs: Self) -> Bool
Returns a Boolean value indicating whether two message authentication codes are equal.