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

/openjdk7/hotspot/test/compiler/6663621/
H A DIVTest.java34 static void padV15(byte[] padded) { argument
35 int psSize = padded.length;
38 padded[k++] = (byte)0xff;
43 byte[] padded = new byte[paddedSize];
44 int psSize = padded.length;
47 padded[k++] = (byte)0xff;
52 byte[] padded = new byte[paddedSize];
53 int psSize = padded.length;
56 padded[k++] = (byte)0xff;
61 byte[] padded
[all...]
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPadding.java81 // size of the padded block (i.e. size of the modulus)
224 * Pad the data and return the padded block.
232 * Pad the data and return the padded block.
253 * Unpad the padded block and return the data.
255 public byte[] unpad(byte[] padded, int ofs, int len) argument
257 return unpad(RSACore.convert(padded, ofs, len));
261 * Unpad the padded block and return the data.
263 public byte[] unpad(byte[] padded) throws BadPaddingException { argument
264 if (padded.length != paddedSize) {
269 return padded;
322 unpadV15(byte[] padded) argument
405 unpadOAEP(byte[] padded) argument
[all...]

Completed in 38 milliseconds