Skip to content

Commit

Permalink
Adjust whitespace and add explicit access modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
ptoffy committed Feb 19, 2024
1 parent d572128 commit fbe93b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ let package = Package(
products: [
.library(name: "JWTKit", targets: ["JWTKit"]),
/* This target is used only for symbol mangling. It's added and removed automatically because it emits build warnings. MANGLE_START
.library(name: "CJWTKitBoringSSL", type: .static, targets: ["CJWTKitBoringSSL"]),
MANGLE_END */
.library(name: "CJWTKitBoringSSL", type: .static, targets: ["CJWTKitBoringSSL"]),
MANGLE_END */
],
dependencies: [
.package(url: "https://github.com/apple/swift-crypto.git", "2.0.0" ..< "4.0.0"),
Expand Down
2 changes: 1 addition & 1 deletion Sources/JWTKit/RSA/RSAKey.swift
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public final class RSAKey: OpenSSLKey {

let type: KeyType

var c: OpaquePointer {
internal var c: OpaquePointer {
return CJWTKitBoringSSL_EVP_PKEY_get1_RSA(self.cRaw)
}

Expand Down

0 comments on commit fbe93b9

Please sign in to comment.