MCarePlusConstants.swift 851 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MCarePlusConstantsSwift.swift
  3. // MCPlus
  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, 1, 95, 95, 67, 27, 3, 46, 117, 6, 22, 9, 92, 4, 19, 66, 30, 1, 114])
  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. }