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.Logiclet;
import com.alogic.xscript.plugins.Segment;

/**
 * 加解密相关的插件
 * 
 * @author yyduan
 * 
 * @since 1.6.10.9
 * 
 * @version 1.6.12.7 [20181108 duanyy] 
* - 改造coder框架
*/ public class NS extends Segment{ 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); registerModule("crypt-de-ext",DecryptExtend.class); registerModule("crypt-en-ext",EncryptExtend.class); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy