001 /* 002 * =========================================================================================== 003 * = COPYRIGHT 004 * PAX Computer Technology (Shenzhen) Co., Ltd. PROPRIETARY INFORMATION 005 * This software is supplied under the terms of a license agreement or nondisclosure 006 * agreement with PAX Computer Technology (Shenzhen) Co., Ltd. and may not be copied or 007 * disclosed except in accordance with the terms in that agreement. 008 * Copyright (C) 2017-2023 PAX Computer Technology (Shenzhen) Co., Ltd. All rights reserved. 009 * Description: // Detail description about the function of this module, 010 * // interfaces with the other modules, and dependencies. 011 * Revision History: 012 * Date Author Action 013 * 2017/04/01 PAX Create/Add/Modify/Delete 014 * =========================================================================================== 015 */ 016package com.pax.dal.entity; 017 018public enum EAlgorithmType { 019 /** 020 * <div class="zh">2TDES算法。</div> <div class="en">2TDES algorithm.</div> 021 */ 022 _2TDEA_, 023 024 /** 025 * <div class="zh">3TDES算法。</div> <div class="en">3TDES algorithm.</div> 026 */ 027 _3TDEA_, 028 029 /** 030 * <div class="zh"> AES128 算法。</div> <div class="en">AES128 algorithm.</div> 031 */ 032 _AES128_, 033 034 /** 035 * <div class="zh"> AES192 算法。</div> <div class="en">AES192 algorithm.</div> 036 */ 037 _AES192_, 038 039 /** 040 * <div class="zh"> AES256 算法。</div> <div class="en">AES256 algorithm.</div> 041 */ 042 _AES256_, 043 044 /** 045 * <div class="zh"> HMAC128 算法。</div> <div class="en">HMAC128 algorithm.</div> 046 */ 047 _HMAC128_, 048 049 /** 050 * <div class="zh"> HMAC192 算法。</div> <div class="en">HMAC192 algorithm.</div> 051 */ 052 _HMAC192_, 053 054 /** 055 * <div class="zh"> HMAC256 算法。</div> <div class="en">HMAC256 algorithm.</div> 056 */ 057 _HMAC256_ 058 ; 059 060 private EAlgorithmType() { 061 } 062}