Searched defs:plain (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/test/java/net/URLConnection/contentHandler/COM/foo/content/text/
H A Dplain.java29 * the text/plain content type. It reads the content of the URL, and prepends
36 * content type "text/plain", this would be "plain" as in this example; for
49 public class plain extends ContentHandler { class in inherits:ContentHandler
61 * Go to a new page with the string as the plain text content
71 sb.append("[This opening message brought to you by your plain/text\n");
/openjdk7/jdk/src/share/classes/sun/net/www/content/text/
H A Dplain.java35 public class plain extends ContentHandler { class in inherits:ContentHandler
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCipherTextStealing.java71 * <p>The input plain text <code>plain</code>, starting at
81 * @param plain the buffer with the input data to be encrypted
82 * @param plainOffset the offset in <code>plain</code>
87 void encryptFinal(byte[] plain, int plainOffset, int plainLen, argument
94 encrypt(plain, plainOffset, plainLen, cipher, cipherOffset);
99 encrypt(plain, plainOffset, plainLen, cipher, cipherOffset);
112 encrypt(plain, plainOffset, newPlainLen, cipher,
123 tmp[i] = (byte) (plain[plainOffset+i] ^ r[i]);
132 (plain[plainOffse
162 decryptFinal(byte[] cipher, int cipherOffset, int cipherLen, byte[] plain, int plainOffset) argument
[all...]
H A DSymmetricCipher.java74 * <p>The input <code>plain</code>, starting at <code>plainOffset</code>
79 * @param plain the input buffer with the data to be encrypted
80 * @param plainOffset the offset in <code>plain</code>
84 abstract void encryptBlock(byte[] plain, int plainOffset, argument
92 * The result is stored in <code>plain</code>, starting at
97 * @param plain the buffer for the decryption result
98 * @param plainOffset the offset in <code>plain</code>
101 byte[] plain, int plainOffset);
100 decryptBlock(byte[] cipher, int cipherOffset, byte[] plain, int plainOffset) argument
H A DCipherBlockChaining.java123 * <p>The input plain text <code>plain</code>, starting at
133 * @param plain the buffer with the input data to be encrypted
134 * @param plainOffset the offset in <code>plain</code>
139 void encrypt(byte[] plain, int plainOffset, int plainLen, argument
148 k[i] = (byte)(plain[i+plainOffset] ^ r[i]);
161 * The result is stored in <code>plain</code>, starting at
175 * @param plain the buffer for the result
176 * @param plainOffset the offset in <code>plain</code>
183 byte[] plain, in
182 decrypt(byte[] cipher, int cipherOffset, int cipherLen, byte[] plain, int plainOffset) argument
[all...]
H A DCipherFeedback.java134 * <p>The input plain text <code>plain</code>, starting at
148 * @param plain the buffer with the input data to be encrypted
149 * @param plainOffset the offset in <code>plain</code>
154 void encrypt(byte[] plain, int plainOffset, int plainLen, argument
169 (byte)(k[i] ^ plain[i+plainOffset]);
175 (byte)(k[i] ^ plain[i+plainOffset]);
185 (byte)(k[i] ^ plain[i+plainOffset]);
193 (byte)(k[i] ^ plain[i+plainOffset]);
205 * The result is stored in <code>plain</cod
222 decrypt(byte[] cipher, int cipherOffset, int cipherLen, byte[] plain, int plainOffset) argument
[all...]
H A DDESedeCrypt.java102 * <p>The input plain text <code>plain</code>, starting at
108 * @param plain the buffer with the input data to be encrypted
109 * @param plainOffset the offset in <code>plain</code>
113 void encryptBlock(byte[] plain, int plainOffset, argument
118 cipherBlock(plain, plainOffset, buf1, 0);
135 * The result is stored in <code>plain</code>, starting at
140 * @param plain the buffer for the result
141 * @param plainOffset the offset in <code>plain</code>
144 byte[] plain, in
143 decryptBlock(byte[] cipher, int cipherOffset, byte[] plain, int plainOffset) argument
[all...]
H A DOutputFeedback.java133 * <p>The input plain text <code>plain</code>, starting at
147 * @param plain the buffer with the input data to be encrypted
148 * @param plainOffset the offset in <code>plain</code>
153 void encrypt(byte[] plain, int plainOffset, int plainLen, argument
168 (byte)(k[i] ^ plain[i+plainOffset]);
175 (byte)(k[i] ^ plain[i+plainOffset]);
185 (byte)(k[i] ^ plain[i+plainOffset]);
193 (byte)(k[i] ^ plain[i+plainOffset]);
206 * The result is stored in <code>plain</cod
223 decrypt(byte[] cipher, int cipherOffset, int cipherLen, byte[] plain, int plainOffset) argument
[all...]
H A DPCBC.java119 * <p>The input plain text <code>plain</code>, starting at
133 * @param plain the buffer with the input data to be encrypted
134 * @param plainOffset the offset in <code>plain</code>
139 void encrypt(byte[] plain, int plainOffset, int plainLen, argument
148 k[i] ^= (byte)(plain[i+plainOffset]);
152 k[i] = (byte)(plain[i+plainOffset] ^ cipher[i+cipherOffset]);
163 * The result is stored in <code>plain</code>, starting at
177 * @param plain the buffer for the result
178 * @param plainOffset the offset in <code>plain</cod
180 decrypt(byte[] cipher, int cipherOffset, int cipherLen, byte[] plain, int plainOffset) argument
[all...]
H A DBlowfishCrypt.java122 * <p>The input plain text <code>plain</code>, starting at
131 * @param plain the buffer with the input data to be encrypted
132 * @param plainOffset the offset in <code>plain</code>
137 void encryptBlock(byte[] plain, int plainOffset, argument
140 cipherBlock(plain, plainOffset, cipher, cipherOffset);
149 * The result is stored in <code>plain</code>, starting at
158 * @param plain the buffer for the result
159 * @param plainOffset the offset in <code>plain</code>
162 byte[] plain, in
161 decryptBlock(byte[] cipher, int cipherOffset, byte[] plain, int plainOffset) argument
[all...]
H A DFeedbackCipher.java123 * <p>The input <code>plain</code>, starting at <code>plainOffset</code>
131 * @param plain the input buffer with the data to be encrypted
132 * @param plainOffset the offset in <code>plain</code>
137 abstract void encrypt(byte[] plain, int plainOffset, int plainLen, argument
148 * @param plain the input buffer with the data to be encrypted
149 * @param plainOffset the offset in <code>plain</code>
154 void encryptFinal(byte[] plain, int plainOffset, int plainLen, argument
157 encrypt(plain, plainOffset, plainLen, cipher, cipherOffset);
164 * The result is stored in <code>plain</code>, starting at
173 * @param plain th
176 decrypt(byte[] cipher, int cipherOffset, int cipherLen, byte[] plain, int plainOffset) argument
194 decryptFinal(byte[] cipher, int cipherOffset, int cipherLen, byte[] plain, int plainOffset) argument
[all...]
H A DDESCrypt.java544 * <p>The input plain text <code>plain</code>, starting at
553 * @param plain the buffer with the input data to be encrypted
554 * @param plainOffset the offset in <code>plain</code>
562 void encryptBlock(byte[] plain, int plainOffset, argument
565 cipherBlock(plain, plainOffset, cipher, cipherOffset);
574 * The result is stored in <code>plain</code>, starting at
583 * @param plain the buffer for the result
584 * @param plainOffset the offset in <code>plain</code>
590 byte[] plain, in
589 decryptBlock(byte[] cipher, int cipherOffset, byte[] plain, int plainOffset) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontFamily.java40 protected Font2D plain; field in class:FontFamily
66 if (family.plain == font2D) {
67 family.plain = null;
78 if (family.plain == null && family.bold == null &&
79 family.plain == null && family.bold == null) {
123 plain = font;
148 return plain;
177 return plain;
182 } else if (plain != null && plain
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DEncryptedData.java50 byte[] plain; // not part of ASN.1 encoding field in class:EncryptedData
177 plain = etypeEngine.decrypt(cipher, key.getBytes(), usage);
179 return etypeEngine.decryptedData(plain);
191 plain = etypeEngine.decrypt(cipher, key.getBytes(), ivec, usage);
193 return etypeEngine.decryptedData(plain);
203 plain = etypeEngine.decrypt(cipher, key.getBytes());
205 return etypeEngine.decryptedData(plain);
210 if (plain != null) {
212 return etypeEngine.decryptedData(plain);

Completed in 43 milliseconds