You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.4 KiB

6 years ago
5 years ago
6 years ago
5 years ago
  1. /*
  2. * Copyright 2017 Google
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  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. #include <TargetConditionals.h>
  17. #if !TARGET_OS_OSX
  18. #import "FIRAuthAPNSToken.h"
  19. NS_ASSUME_NONNULL_BEGIN
  20. @implementation FIRAuthAPNSToken {
  21. /** @var _string
  22. @brief The lazy-initialized string form of the token data.
  23. */
  24. NSString *_string;
  25. }
  26. - (instancetype)initWithData:(NSData *)data type:(FIRAuthAPNSTokenType)type {
  27. self = [super init];
  28. if (self) {
  29. _data = [data copy];
  30. _type = type;
  31. }
  32. return self;
  33. }
  34. - (NSString *)string {
  35. if (!_string) {
  36. NSUInteger capacity = _data.length * 2;
  37. NSMutableString *tokenString = [NSMutableString stringWithCapacity:capacity];
  38. const unsigned char *tokenData = _data.bytes;
  39. for (int idx = 0; idx < _data.length; ++idx) {
  40. [tokenString appendFormat:@"%02X", (int)tokenData[idx]];
  41. }
  42. _string = tokenString;
  43. }
  44. return _string;
  45. }
  46. @end
  47. NS_ASSUME_NONNULL_END
  48. #endif