OIDIDToken.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*! @file OIDIDToken.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2017 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 A convenience class that parses an ID Token and extracts the claims _but does not_
  19. verify its signature. AppAuth only supports the OpenID Code flow, meaning ID Tokens
  20. received by AppAuth are sent from the token endpoint on a TLS protected channel,
  21. offering some assurances as to the origin of the token. You may wish to additionally
  22. verify the ID Token signature using a JWT signature verification library of your
  23. choosing.
  24. @see http://openid.net/specs/openid-connect-core-1_0.html#IDToken
  25. @see https://tools.ietf.org/html/rfc7519
  26. @see https://jwt.io/
  27. */
  28. @interface OIDIDToken : NSObject
  29. /*! @internal
  30. @brief Unavailable. Please use @c initWithAuthorizationResponse:.
  31. */
  32. - (instancetype)init NS_UNAVAILABLE;
  33. /*! @brief Parses the given ID Token string.
  34. @param idToken The ID Token spring.
  35. */
  36. - (nullable instancetype)initWithIDTokenString:(NSString *)idToken;
  37. /*! @brief The header JWT values.
  38. */
  39. @property(nonatomic, readonly) NSDictionary *header;
  40. /*! @brief All ID Token claims.
  41. */
  42. @property(nonatomic, readonly) NSDictionary *claims;
  43. /*! @brief Issuer Identifier for the Issuer of the response.
  44. @remarks iss
  45. @see http://openid.net/specs/openid-connect-core-1_0.html#IDToken
  46. */
  47. @property(nonatomic, readonly) NSURL *issuer;
  48. /*! @brief Subject Identifier.
  49. @remarks sub
  50. @see http://openid.net/specs/openid-connect-core-1_0.html#IDToken
  51. */
  52. @property(nonatomic, readonly) NSString *subject;
  53. /*! @brief Audience(s) that this ID Token is intended for.
  54. @remarks aud
  55. @see http://openid.net/specs/openid-connect-core-1_0.html#IDToken
  56. */
  57. @property(nonatomic, readonly) NSArray *audience;
  58. /*! @brief Expiration time on or after which the ID Token MUST NOT be accepted for processing.
  59. @remarks exp
  60. @see http://openid.net/specs/openid-connect-core-1_0.html#IDToken
  61. */
  62. @property(nonatomic, readonly) NSDate *expiresAt;
  63. /*! @brief Time at which the JWT was issued.
  64. @remarks iat
  65. @see http://openid.net/specs/openid-connect-core-1_0.html#IDToken
  66. */
  67. @property(nonatomic, readonly) NSDate *issuedAt;
  68. /*! @brief String value used to associate a Client session with an ID Token, and to mitigate replay
  69. attacks.
  70. @remarks nonce
  71. @see http://openid.net/specs/openid-connect-core-1_0.html#IDToken
  72. */
  73. @property(nonatomic, readonly, nullable) NSString *nonce;
  74. @end
  75. NS_ASSUME_NONNULL_END