Package com.maverick.crypto.engines

Examples of com.maverick.crypto.engines.RC4Engine


    public SSL_RSA_WITH_RC4_128_MD5() {
    }

    public void init(byte[] encryptKey, byte[] encryptIV, byte[] decryptKey, byte[] decryptIV) {

        encrypt = new RC4Engine();
        encrypt.init(true, encryptKey);

        decrypt = new RC4Engine();
        decrypt.init(false, decryptKey);
    }
View Full Code Here

TOP

Related Classes of com.maverick.crypto.engines.RC4Engine

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.