All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dromara.hutool.crypto.Mode Maven / Gradle / Ivy

There is a newer version: 6.0.0.M3
Show newest version
/*
 * Copyright (c) 2013-2024 Hutool Team and hutool.cn
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.dromara.hutool.crypto;

/**
 * 模式
 *
 * 

* 加密算法模式,是用来描述加密算法(此处特指分组密码,不包括流密码)在加密时对明文分组的模式,它代表了不同的分组方式 * * @author Looly * @see Cipher章节 * @since 3.0.8 */ public enum Mode { /** * 无模式 */ NONE, /** * 密码分组连接模式(Cipher Block Chaining) */ CBC, /** * 密文反馈模式(Cipher Feedback) */ CFB, /** * 计数器模式(A simplification of OFB) */ CTR, /** * Cipher Text Stealing */ CTS, /** * 电子密码本模式(Electronic CodeBook) */ ECB, /** * 输出反馈模式(Output Feedback) */ OFB, /** * Propagating Cipher Block */ PCBC, /** * GCM 全称为 Galois/Counter Mode。G是指GMAC,C是指CTR。 * 它在 CTR 加密的基础上增加 GMAC 的特性,解决了 CTR 不能对加密消息进行完整性校验的问题。 */ GCM }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy