洛阳学员端
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.
 
 
 
 
 

28 lines
488 B

//
// ASSSecureInfo.h
// APPSecuritySDK
//
// Created by msq on 2018/7/9.
// Copyright © 2018年 Alipay. All rights reserved.
//
#import <Foundation/Foundation.h>
#define ASSSecureInfo ASSSecureInfoCore
@interface ASSSecureInfo : NSObject
/**
* 重打包检测
* 返回值:YES表示个人签名;NO表示企业签名
*
*/
+ (BOOL)hasPersonSign;
/**
* 越狱检测
* 返回值:0表示非越狱;大于0其他值表示越狱
*
*/
+ (uint32_t)checkJB;
@end