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.
24 lines
674 B
24 lines
674 B
//
|
|
// ZolozSimpleValueContent.h
|
|
// DTFUtility
|
|
//
|
|
// Created by 053508 on 2021/6/9.
|
|
// Copyright © 2021 com. .iphoneclient.DTF. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ZolozSimpleValueContent : NSObject
|
|
|
|
@property(nonatomic,strong,nullable)NSString * simpleValue;//用于存放Md5值。
|
|
@property(nonatomic,assign)NSUInteger length;//用于存放Md5值。
|
|
@property(nonatomic,strong,nullable)NSString * simpleOutValue;//用于存放Md5值。
|
|
@property(nonatomic,strong,nullable)NSString * simpleEnValue;//用于存放加密后的Md5值。
|
|
|
|
+ (ZolozSimpleValueContent *)sharedInstance;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|