-
Notifications
You must be signed in to change notification settings - Fork 207
[Base64] Add new encoding options #1195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Base64] Add new encoding options #1195
Conversation
|
Proposal: #1156 |
| public static let endLineWithLineFeed = Base64EncodingOptions(rawValue: 1 << 5) | ||
|
|
||
| /// Use the base64url alphabet to encode the data | ||
| @available(FoundationPreview 6.2, *) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'll need to update this to 6.3 since we've passed 6.2. Just so we don't forget we'll want to update the proposal too
31a85fa to
671392f
Compare
|
@swift-ci please test |
itingliu
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks!
|
@itingliu Merge? |
|
@fabianfett There are build errors when building with Currently I'm working on a fix for that. I'd like to resolve that together with merging this, though if it turns out to be more complicated than I expected I'll come back to merge this and handle that in a follow up. |
… Add new encoding options) (#3418) Signed-off-by: Tina Liu <[email protected]> Co-authored-by: Fabian Fett <[email protected]>
Move the new options out of `#if !FOUNDATION_FRAMEWORK` block
Implementation for pitch