BBASMRiskControl.h
461 Bytes
//
// BBASMRiskControl.h
// BBAMNPCrypto
//
// Created by baidu on 2020/8/11.
// Copyright © 2020 Baidu. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface BBASMRiskControl : NSObject
/// 返回风控系统信息
/// @param string 要加密的字符串
/// @return @{@"key": 秘钥key, @"content": 加密后的内容}
+ (NSDictionary *)getRiskControlCryptoDic:(NSString *)string;
@end
NS_ASSUME_NONNULL_END