Searched refs:plain (Results 1 - 23 of 23) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/www/content/text/
H A DGeneric.java31 public class Generic extends plain {
32 /* nothing to do since Generic is identical to plain! */
H A Dplain.java35 public class plain extends ContentHandler { class in inherits:ContentHandler
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
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 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 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 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 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 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 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 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 DKeyProtector.java130 byte[] plain = (byte[])key.getEncoded();
131 byte[] encrKey = cipher.engineDoFinal(plain, 0, plain.length);
151 byte[] plain;
163 plain = recover(encrInfo.getEncryptedData());
185 plain=cipher.engineDoFinal(encrInfo.getEncryptedData(), 0,
192 (new PrivateKeyInfo(plain).getAlgorithm().getOID()).getName();
194 return kFac.generatePrivate(new PKCS8EncodedKeySpec(plain));
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 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/test/sun/security/mscapi/
H A DPublicKeyInterop.java54 byte[] plain = new byte[] {0x01, 0x02, 0x03, 0x04, 0x05};
56 System.out.println("Plaintext:\n" + hde.encode(plain) + "\n");
60 byte[] encrypted = rsa.doFinal(plain);
67 byte[] encrypted2 = rsa2.doFinal(plain);
78 if (! Arrays.equals(plain, decrypted)) {
87 if (! Arrays.equals(plain, decrypted)) {
/openjdk7/jdk/test/java/awt/PrintJob/Text/
H A DStringWidth.java31 Font plain = new Font("Dialog", Font.PLAIN, 10);
49 FontMetrics plainFm = pg.getFontMetrics(plain);
57 pg.setFont(plain);
/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/protocol/http/
H A DBasicAuthentication.java60 String plain = pw.getUserName() + ":";
63 nameBytes = plain.getBytes("ISO-8859-1");
100 String plain = pw.getUserName() + ":";
103 nameBytes = plain.getBytes("ISO-8859-1");
/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);
/openjdk7/jdk/test/java/net/URLConnection/contentHandler/
H A DUserContentHandler.java32 * that prepends a specific package prefix defining a text/plain content
34 * the Sun implementation text/plain content handler in sun.net.www.content
58 out.print("Content-Type: text/plain\r\n");
82 Object o = new COM.foo.content.text.plain();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/client/p2p/
H A DHttpSOAPConnection.java615 String plain = user + ":";
616 byte[] nameBytes = plain.getBytes();
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DJavaKeyStore.java130 byte[] plain;
/openjdk7/jdk/make/sun/net/
H A DFILES_java.gmk65 sun/net/www/content/text/plain.java \

Completed in 125 milliseconds