Package com.securityinnovation.jNeo.inputstream

Examples of com.securityinnovation.jNeo.inputstream.MGF1


     */
    FullPolynomial calcEncryptionMask(
        FullPolynomial R)
    {
        byte R4[] = calcPolyMod4Packed(R);
        MGF1 mgf = new MGF1(keyParams.mgfHash, keyParams.minCallsMask, true,
                            R4, 0, R4.length);
        FullPolynomial p = MGF_TP_1.genTrinomial(keyParams.N, mgf);
        mgf.close();
        return p;
    }
View Full Code Here

TOP

Related Classes of com.securityinnovation.jNeo.inputstream.MGF1

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.