OIDTokenUtilities.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*! @file OIDTokenUtilities.h
  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 <Foundation/Foundation.h>
  17. NS_ASSUME_NONNULL_BEGIN
  18. /*! @brief Provides data encoding/decoding methods, random string generators, etc.
  19. */
  20. @interface OIDTokenUtilities : NSObject
  21. /*! @internal
  22. @brief Unavailable. This class should not be initialized.
  23. */
  24. - (instancetype)init NS_UNAVAILABLE;
  25. /*! @brief Base64url-nopadding encodes the given data.
  26. @param data The input data.
  27. @return The base64url encoded data as a NSString.
  28. @discussion Base64url-nopadding is used in several identity specs such as PKCE and
  29. OpenID Connect.
  30. */
  31. + (NSString *)encodeBase64urlNoPadding:(NSData *)data;
  32. /*! @brief Generates a URL-safe string of random data.
  33. @param size The number of random bytes to encode. NB. the length of the output string will be
  34. greater than the number of random bytes, due to the URL-safe encoding.
  35. @return Random data encoded with base64url.
  36. */
  37. + (nullable NSString *)randomURLSafeStringWithSize:(NSUInteger)size;
  38. /*! @brief SHA256 hashes the input string.
  39. @param inputString The input string.
  40. @return The SHA256 data.
  41. */
  42. + (NSData *)sha256:(NSString *)inputString;
  43. /*! @brief Truncated intput string after first 6 characters followed by ellipses
  44. @param inputString The input string.
  45. @return Truncated string.
  46. */
  47. + (nullable NSString *)redact:(nullable NSString *)inputString;
  48. /*! @brief Form url encode the input string by applying application/x-www-form-urlencoded algorithm
  49. @param inputString The input string.
  50. @return The encoded string.
  51. */
  52. + (NSString*)formUrlEncode:(NSString*)inputString;
  53. @end
  54. NS_ASSUME_NONNULL_END