OIDTokenUtilities.m 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*! @file OIDTokenUtilities.m
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2015 Google Inc. All Rights Reserved.
  5. @copydetails
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. */
  16. #import "OIDTokenUtilities.h"
  17. #import <CommonCrypto/CommonDigest.h>
  18. /*! @brief String representing the set of characters that are allowed as is for the
  19. application/x-www-form-urlencoded encoding algorithm.
  20. */
  21. static NSString *const kFormUrlEncodedAllowedCharacters =
  22. @" *-._0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
  23. @implementation OIDTokenUtilities
  24. + (NSString *)encodeBase64urlNoPadding:(NSData *)data {
  25. NSString *base64string = [data base64EncodedStringWithOptions:0];
  26. // converts base64 to base64url
  27. base64string = [base64string stringByReplacingOccurrencesOfString:@"+" withString:@"-"];
  28. base64string = [base64string stringByReplacingOccurrencesOfString:@"/" withString:@"_"];
  29. // strips padding
  30. base64string = [base64string stringByReplacingOccurrencesOfString:@"=" withString:@""];
  31. return base64string;
  32. }
  33. + (nullable NSString *)randomURLSafeStringWithSize:(NSUInteger)size {
  34. NSMutableData *randomData = [NSMutableData dataWithLength:size];
  35. int result = SecRandomCopyBytes(kSecRandomDefault, randomData.length, randomData.mutableBytes);
  36. if (result != 0) {
  37. return nil;
  38. }
  39. return [[self class] encodeBase64urlNoPadding:randomData];
  40. }
  41. + (NSData *)sha256:(NSString *)inputString {
  42. NSData *verifierData = [inputString dataUsingEncoding:NSUTF8StringEncoding];
  43. NSMutableData *sha256Verifier = [NSMutableData dataWithLength:CC_SHA256_DIGEST_LENGTH];
  44. CC_SHA256(verifierData.bytes, (CC_LONG)verifierData.length, sha256Verifier.mutableBytes);
  45. return sha256Verifier;
  46. }
  47. + (NSString *)redact:(NSString *)inputString {
  48. if (inputString == nil) {
  49. return nil;
  50. }
  51. switch(inputString.length){
  52. case 0:
  53. return @"";
  54. case 1 ... 8:
  55. return @"[redacted]";
  56. case 9:
  57. default:
  58. return [[inputString substringToIndex:6] stringByAppendingString:@"...[redacted]"];
  59. }
  60. }
  61. + (NSString*)formUrlEncode:(NSString*)inputString {
  62. // https://www.w3.org/TR/html5/sec-forms.html#application-x-www-form-urlencoded-encoding-algorithm
  63. // Following the spec from the above link, application/x-www-form-urlencoded percent encode all
  64. // the characters except *-._A-Za-z0-9
  65. // Space character is replaced by + in the resulting bytes sequence
  66. if (inputString.length == 0) {
  67. return inputString;
  68. }
  69. NSCharacterSet *allowedCharacters =
  70. [NSCharacterSet characterSetWithCharactersInString:kFormUrlEncodedAllowedCharacters];
  71. // Percent encode all characters not present in the provided set.
  72. NSString *encodedString =
  73. [inputString stringByAddingPercentEncodingWithAllowedCharacters:allowedCharacters];
  74. // Replace occurences of space by '+' character
  75. return [encodedString stringByReplacingOccurrencesOfString:@" " withString:@"+"];
  76. }
  77. @end