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.

52 lines
1.4 KiB

6 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. #import "FIRAuthAPNSToken.h"
  17. NS_ASSUME_NONNULL_BEGIN
  18. @implementation FIRAuthAPNSToken {
  19. /** @var _string
  20. @brief The lazy-initialized string form of the token data.
  21. */
  22. NSString *_string;
  23. }
  24. - (instancetype)initWithData:(NSData *)data type:(FIRAuthAPNSTokenType)type {
  25. self = [super init];
  26. if (self) {
  27. _data = [data copy];
  28. _type = type;
  29. }
  30. return self;
  31. }
  32. - (NSString *)string {
  33. if (!_string) {
  34. NSUInteger capacity = _data.length * 2;
  35. NSMutableString *tokenString = [NSMutableString stringWithCapacity:capacity];
  36. const unsigned char *tokenData = _data.bytes;
  37. for (int idx = 0; idx < _data.length; ++idx) {
  38. [tokenString appendFormat:@"%02X", (int)tokenData[idx]];
  39. }
  40. _string = tokenString;
  41. }
  42. return _string;
  43. }
  44. @end
  45. NS_ASSUME_NONNULL_END