MCarePlusConstants-inHouse.swift 882 B

123456789101112131415161718192021222324252627
  1. //
  2. // MCarePlusConstants-inHouseSwift.swift
  3. // MCPlus_dev
  4. //
  5. // Created by seo ha on 13/02/2019.
  6. // Copyright © 2019 KangSH. All rights reserved.
  7. //
  8. import Foundation
  9. @objcMembers
  10. class MCarePlusConstants:NSObject, MCarePlusConstantsProtocol {
  11. private static var obf:Obfuscator = Obfuscator(withSalt: ["mcareplus" as AnyObject])
  12. static var MCARE_ALERT_TITLE_ICON:String = {
  13. return obf.reveal(key: [50, 14, 12, 15, 59, 8, 17, 11, 16, 94, 54, 46, 3, 8, 20, 25])
  14. }()
  15. static var DOMAIN_NAME:String = {
  16. return obf.reveal(key:[51, 25, 23, 17, 72, 74, 95, 93, 76, 65, 115, 106, 91, 91, 79, 67, 75, 65, 84, 79, 71, 101, 107, 85, 83, 78])
  17. }()
  18. static var CERT_TYPE = {
  19. return obf.reveal(key:[50, 3, 43, 14, 7, 22, 21])
  20. }()
  21. static var APP_NAME = {
  22. return obf.reveal(key:[54, 14, 2, 19, 23, 72, 0, 0, 0, 0])
  23. }()
  24. }