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

com.alogic.xscript.crypto.NS Maven / Gradle / Ivy

There is a newer version: 1.6.17
Show newest version
package com.alogic.xscript.crypto;

import com.alogic.xscript.AbstractLogiclet;
import com.alogic.xscript.Logiclet;

/**
 * 加解密相关的插件
 * 
 * @author yyduan
 * 
 * @since 1.6.10.9
 */
public class NS extends AbstractLogiclet{

	public NS(String tag, Logiclet p) {
		super(tag, p);
		
		registerModule("crypt-de",Decrypt.class);
		registerModule("crypt-en",Encrypt.class);
		registerModule("crypt-key",GenKey.class);
		registerModule("crypt-rsa-key",GenRSAKey.class);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy