Skip to content

Commit

Permalink
Make NanoTDF's header public
Browse files Browse the repository at this point in the history
The header variable of the NanoTDF struct has been made public to allow other parts of the codebase or external entities to access it. This change increases the flexibility of use without compromising the encapsulation of other data within the struct.
  • Loading branch information
arkavo-com committed Jul 3, 2024
1 parent b1f2bf5 commit bf7d190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenTDFKit/NanoTDF.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import CryptoKit
import Foundation

public struct NanoTDF {
var header: Header
public var header: Header
var payload: Payload
var signature: Signature?
#if DEBUG
Expand Down

0 comments on commit bf7d190

Please sign in to comment.