ASSSecureInfo.h 488 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ASSSecureInfo.h
  3. // APPSecuritySDK
  4. //
  5. // Created by msq on 2018/7/9.
  6. // Copyright © 2018年 Alipay. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define ASSSecureInfo ASSSecureInfoCore
  10. @interface ASSSecureInfo : NSObject
  11. /**
  12. * 重打包检测
  13. * 返回值:YES表示个人签名;NO表示企业签名
  14. *
  15. */
  16. + (BOOL)hasPersonSign;
  17. /**
  18. * 越狱检测
  19. * 返回值:0表示非越狱;大于0其他值表示越狱
  20. *
  21. */
  22. + (uint32_t)checkJB;
  23. @end