Searched defs:paddedSize (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/test/compiler/6663621/
H A DIVTest.java32 static int paddedSize; field in class:IVTest
42 static void padV15_2(int paddedSize) { argument
43 byte[] padded = new byte[paddedSize];
52 byte[] padded = new byte[paddedSize];
61 byte[] padded = new byte[paddedSize];
70 byte[] padded = new byte[paddedSize];
83 paddedSize = j % bounds;
84 padV15(new byte[paddedSize]);
90 paddedSize = j % bounds;
91 padV15_2(paddedSize);
[all...]
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPadding.java82 private final int paddedSize; field in class:RSAPadding
101 * Keys used with this padding must be paddedSize bytes long.
103 public static RSAPadding getInstance(int type, int paddedSize) argument
105 return new RSAPadding(type, paddedSize, null, null);
110 * Keys used with this padding must be paddedSize bytes long.
112 public static RSAPadding getInstance(int type, int paddedSize, argument
115 return new RSAPadding(type, paddedSize, random, null);
120 * OAEP. Keys used with this padding must be paddedSize bytes long.
122 public static RSAPadding getInstance(int type, int paddedSize, argument
125 return new RSAPadding(type, paddedSize, rando
129 RSAPadding(int type, int paddedSize, SecureRandom random, OAEPParameterSpec spec) argument
[all...]

Completed in 30 milliseconds