forked from aws-amplify/aws-appsync-apollo-extensions-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathString+Masked.swift
39 lines (34 loc) · 1.24 KB
/
String+Masked.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
import Foundation
extension String {
/// Returns a masked version of the receiver.
///
/// - Parameters:
/// - character: The character to obscure the interior of the string
/// - retainingCount: Number of characters to retain at both the beginning and end
/// of the string
/// - interiorCount: Number of masked characters in the interior of the string.
/// Defaults to actual size of string
/// - Returns: A masked version of the string
func masked(
using character: Character = "*",
interiorCount: Int = .max,
retainingCount: Int = 2
) -> String {
guard count >= retainingCount * 2 else {
return String(repeating: character, count: count)
}
let interiorCharacterCount = count - (retainingCount * 2)
let actualMaskSize = min(interiorCharacterCount, interiorCount)
let mask = String(repeating: character, count: actualMaskSize)
let prefix = prefix(retainingCount)
let suffix = suffix(retainingCount)
let maskedString = prefix + mask + suffix
return String(maskedString)
}
}