code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
package com.jxau.mall.user.controller; import com.jxau.mall.common.util.JwtUtils; import com.jxau.mall.common.util.ResponseVO; import com.jxau.mall.user.entity.UserInfo; import com.jxau.mall.user.model.UserLogin; import com.jxau.mall.user.service.ILoginService; import jakarta.servlet.http.HttpServletResponse; ...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/controller/UserLoginController.java
Java
unknown
1,591
package com.jxau.mall.user.controller; import com.jxau.mall.common.util.ResponseVO; import com.jxau.mall.user.entity.UserReceiveAddress; import com.jxau.mall.user.model.UserReceiveAddressDTO; import com.jxau.mall.user.service.IUserReceiveAddressService; import org.springframework.beans.factory.annotation.Autowir...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/controller/UserReceiveAddressController.java
Java
unknown
1,353
package com.jxau.mall.user.entity; import com.baomidou.mybatisplus.annotation.*; import lombok.*; import org.springframework.stereotype.Component; import java.io.Serializable; import java.time.LocalDateTime; //@Getter //@Setter @Data //该注解能代替以上两个注解 @AllArgsConstructor //创建所有参数的构造方法 @NoArgsConstructor /...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/entity/UserInfo.java
Java
unknown
1,637
package com.jxau.mall.user.entity; import com.baomidou.mybatisplus.annotation.*; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import org.springframework.stereotype.Component; import java.io.Serializable; import java.time.LocalDateTime; @Ge...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/entity/UserLoginLog.java
Java
unknown
1,154
package com.jxau.mall.user.entity; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.jxau.mall.common.util.EncryptHandler; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import o...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/entity/UserReceiveAddress.java
Java
unknown
1,423
package com.jxau.mall.user.mapper; import com.jxau.mall.user.entity.UserInfo; import java.util.List; public interface IBaseMapper <T>{ /** * 添加数据,放入对象 * @param entity * @return */ int insert(T entity); /** * 修改数据,必须有id * @param entity * @return *...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/mapper/IBaseMapper.java
Java
unknown
705
package com.jxau.mall.user.mapper; import com.jxau.mall.user.entity.UserInfo; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * @description: * @author: guojiani * @date: 2025/3/24 20:00 * @param: * @return: * 表user_info实体类 **/ //@Mapper //把接口的实现类扫描到容器中 //user_info的DA...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/mapper/IUserInfoMapper.java
Java
unknown
436
package com.jxau.mall.user.mapper; import com.jxau.mall.user.entity.UserLoginLog; //user_login_log 的DAO接口 public interface IUserLoginLogMapper extends IBaseMapper<UserLoginLog>{ }
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/mapper/IUserLoginLogMapper.java
Java
unknown
197
package com.jxau.mall.user.mapper; import com.jxau.mall.user.entity.UserReceiveAddress; //user_receive_address的DAO接口 public interface IUserReceiveAddressMapper extends IBaseMapper<UserReceiveAddress>{ }
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/mapper/IUserReceiveAddressMapper.java
Java
unknown
220
package com.jxau.mall.user.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.jxau.mall.user.entity.UserInfo; /** * @program: shop * * @description: 结合MybatisPlus * * @author: guojiani * * @create: 2025-04-07 15:19 **/ public interface UserInfoMapper extends BaseMapper<UserInfo> ...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/mapper/UserInfoMapper.java
Java
unknown
410
package com.jxau.mall.user.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.jxau.mall.user.entity.UserLoginLog; /** * @program: shop * @description: 结合MybatisPlus * @author: guojiani * @create: 2025-04-07 15:20 **/ public interface UserLoginLogMapper extends BaseMapper<UserLo...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/mapper/UserLoginLogMapper.java
Java
unknown
338
package com.jxau.mall.user.mapper; import com.jxau.mall.user.entity.UserInfo; /** * @program: shop * @description: 用户登录接口 * @author: guojiani * @create: 2025-04-24 17:29 **/ public interface UserMapper extends IBaseMapper<UserInfo>{ }
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/mapper/UserMapper.java
Java
unknown
266
package com.jxau.mall.user.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.jxau.mall.user.entity.UserReceiveAddress; /** * @program: shop * @description: 结合MybatisPlus * @author: guojiani * @create: 2025-04-07 15:21 **/ public interface UserReceiveAddressMapper extends BaseM...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/mapper/UserReceiveAddressMapper.java
Java
unknown
356
package com.jxau.mall.user.model; import lombok.Data; /** * @program: shop * @description: 用户登录DTO类 * @author: guojiani * @create: 2025-04-24 20:02 **/ @Data public class UserLogin { private String username; private String password; }
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/model/UserLogin.java
Java
unknown
275
package com.jxau.mall.user.model; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import java.time.LocalDateTime; /** * @program: shop * @description: 封装查询条件(按照条件查询) * @author: guojiani * @create: 2025-04-24 17:06 **/ @Data @AllArgsConstructor @NoArgsConstr...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/model/UserLoginLogQuery.java
Java
unknown
493
package com.jxau.mall.user.model; import com.jxau.mall.common.util.EncryptUtils; import com.jxau.mall.user.entity.UserReceiveAddress; import java.io.Serializable; /** * @program: shop * @description: 收件地址DTO类 * @author: guojiani * @create: 2025-04-24 19:53 **/ public class UserReceiveAddressDTO ext...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/model/UserReceiveAddressDTO.java
Java
unknown
707
package com.jxau.mall.user.service; import com.jxau.mall.user.entity.UserInfo; /** * @program: shop * @description: 用户登录业务接口 * @author: guojiani * @create: 2025-04-24 19:49 **/ public interface ILoginService { /** * 用户登录 * @param username * @param password * @return *...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/service/ILoginService.java
Java
unknown
448
package com.jxau.mall.user.service; import com.baomidou.mybatisplus.extension.service.IService; import com.jxau.mall.user.entity.UserInfo; import org.springframework.stereotype.Service; /** * @program: shop * @description: user_info表业务层接口 * @author: guojiani * @create: 2025-04-24 14:38 **/ public i...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/service/IUserInfoService.java
Java
unknown
391
package com.jxau.mall.user.service; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.IService; import com.jxau.mall.user.entity.UserLoginLog; import com.jxau.mall.user.model.UserLoginLogQuery;...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/service/IUserLoginLogService.java
Java
unknown
904
package com.jxau.mall.user.service; import com.baomidou.mybatisplus.extension.service.IService; import com.jxau.mall.user.entity.UserReceiveAddress; import com.jxau.mall.user.model.UserReceiveAddressDTO; import org.springframework.stereotype.Service; import java.util.List; /** * @program: shop * @descri...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/service/IUserReceiveAddressService.java
Java
unknown
639
package com.jxau.mall.user.service; import com.baomidou.mybatisplus.extension.service.IService; import com.jxau.mall.user.entity.UserInfo; /** * @program: shop * @description: 完成用户登录业务接口 * @author: guojiani * @create: 2025-04-24 17:25 **/ public interface IUserService extends IService<UserInfo> { ...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/service/IUserService.java
Java
unknown
509
package com.jxau.mall.user.service.impl; import com.baomidou.mybatisplus.extension.conditions.query.LambdaQueryChainWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.jxau.mall.user.entity.UserInfo; import com.jxau.mall.user.entity.UserLoginLog; import com.jxau.mall.user.mapp...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/service/impl/IUserInfoServiceImpl.java
Java
unknown
776
package com.jxau.mall.user.service.impl; import com.jxau.mall.user.entity.UserInfo; import com.jxau.mall.user.entity.UserLoginLog; import com.jxau.mall.user.service.ILoginService; import com.jxau.mall.user.service.IUserLoginLogService; import com.jxau.mall.user.service.IUserService; import org.springframework.b...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/service/impl/LoginServiceImpl.java
Java
unknown
1,491
package com.jxau.mall.user.service.impl; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.conditions.query.LambdaQueryChainWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; ...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/service/impl/UserLoginLogServiceImpl.java
Java
unknown
2,993
package com.jxau.mall.user.service.impl; import com.alibaba.fastjson.JSON; import com.baomidou.mybatisplus.extension.conditions.query.LambdaQueryChainWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.jxau.mall.user.entity.UserReceiveAddress; import com.jxau.mall.user.mapper....
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/service/impl/UserReceiveAddressServiceImpl.java
Java
unknown
1,741
package com.jxau.mall.user.service.impl; import com.baomidou.mybatisplus.extension.conditions.query.LambdaQueryChainWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.jxau.mall.common.enums.ResponseEnum; import com.jxau.mall.user.entity.UserInfo; import com.jxau.mall.user.map...
2301_80339408/shop2-backend
shop/shop/mall-user/src/main/java/com/jxau/mall/user/service/impl/UserServiceImpl.java
Java
unknown
1,568
# This file is part of the openHiTLS project. # # openHiTLS is licensed under the Mulan PSL v2. # You can use this software according to the terms and conditions of the Mulan PSL v2. # You may obtain a copy of Mulan PSL v2 at: # # http://license.coscl.org.cn/MulanPSL2 # # THIS SOFTWARE IS PROVIDED ON AN "AS IS" BAS...
2301_79861745/bench_create
CMakeLists.txt
CMake
unknown
1,079
#ifndef APP_BENCH_H #define APP_BENCH_H #include <stdint.h> int32_t HITLS_BENCHMain(int argc, char *argv[]); #endif
2301_79861745/bench_create
apps/include/app_bench.h
C
unknown
116
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_conf.h
C
unknown
5,429
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_crl.h
C
unknown
734
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_dgst.h
C
unknown
866
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_enc.h
C
unknown
1,639
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVI...
2301_79861745/bench_create
apps/include/app_errno.h
C
unknown
3,266
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_function.h
C
unknown
1,083
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_genpkey.h
C
unknown
769
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_genrsa.h
C
unknown
967
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_help.h
C
unknown
714
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_kdf.h
C
unknown
734
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_keymgmt.h
C
unknown
3,983
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_list.h
C
unknown
1,183
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_mac.h
C
unknown
734
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_opt.h
C
unknown
8,669
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_passwd.h
C
unknown
1,429
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_pkcs12.h
C
unknown
745
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_pkey.h
C
unknown
757
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_print.h
C
unknown
1,527
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_provider.h
C
unknown
1,067
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_rand.h
C
unknown
737
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_req.h
C
unknown
753
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_rsa.h
C
unknown
734
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_sm.h
C
unknown
3,218
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_utils.h
C
unknown
6,791
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_verify.h
C
unknown
744
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/include/app_x509.h
C
unknown
757
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN "A...
2301_79861745/bench_create
apps/src/app_bench.c
C
unknown
60,454
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_conf.c
C
unknown
29,842
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_crl.c
C
unknown
14,575
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_dgst.c
C
unknown
19,488
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_enc.c
C
unknown
53,758
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_function.c
C
unknown
3,343
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_genpkey.c
C
unknown
11,840
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_genrsa.c
C
unknown
12,019
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_help.c
C
unknown
2,358
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_kdf.c
C
unknown
16,424
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_keymgmt.c
C
unknown
55,460
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_list.c
C
unknown
17,895
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_mac.c
C
unknown
20,233
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_opt.c
C
unknown
21,552
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_passwd.c
C
unknown
28,128
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_pkcs12.c
C
unknown
36,641
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_pkey.c
C
unknown
8,914
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_print.c
C
unknown
2,515
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_provider.c
C
unknown
2,113
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_rand.c
C
unknown
7,943
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_req.c
C
unknown
18,571
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_rsa.c
C
unknown
11,175
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_sm.c
C
unknown
23,098
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_utils.c
C
unknown
35,369
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_verify.c
C
unknown
9,988
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/app_x509.c
C
unknown
45,965
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
apps/src/hitls.c
C
unknown
4,165
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
auth/privpass_token/include/privpass_token.h
C
unknown
3,994
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
auth/privpass_token/src/privpass_token.c
C
unknown
24,225
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
auth/privpass_token/src/privpass_token_util.c
C
unknown
45,269
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
auth/privpass_token/src/privpass_token_wrapper.c
C
unknown
11,338
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/asn1/include/bsl_asn1_internal.h
C
unknown
3,544
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/asn1/src/bsl_asn1.c
C
unknown
43,813
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/asn1/src/bsl_asn1_local.h
C
unknown
1,498
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/base64/include/bsl_base64_internal.h
C
unknown
1,765
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/base64/src/bsl_base64.c
C
unknown
19,575
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/buffer/include/bsl_buffer.h
C
unknown
950
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/buffer/src/bsl_buffer.c
C
unknown
2,300
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/conf/include/bsl_conf.h
C
unknown
7,124
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/conf/include/bsl_conf_def.h
C
unknown
2,872
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/conf/src/bsl_conf.c
C
unknown
5,797
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/conf/src/bsl_conf_def.c
C
unknown
26,113
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/err/include/bsl_err_internal.h
C
unknown
1,723
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/err/src/avl.c
C
unknown
9,427
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/err/src/avl.h
C
unknown
3,271
/* * This file is part of the openHiTLS project. * * openHiTLS is licensed under the Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN...
2301_79861745/bench_create
bsl/err/src/err.c
C
unknown
15,532