Package org.jboss.aerogear.AeroGearCrypto

Examples of org.jboss.aerogear.AeroGearCrypto.Mode


public class BlockModeTest {

    @Test
    public void testGcmToString() throws Exception {
        String expectedMode = "GCM/NoPadding";
        Mode mode = Mode.GCM;
        assertEquals("Should return formatted block mode", expectedMode, mode.toString());
    }
View Full Code Here

TOP

Related Classes of org.jboss.aerogear.AeroGearCrypto.Mode

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.