HomeSort by relevance Sort by last modified time
    Searched full:plaintext (Results 1 - 25 of 241) sorted by null

1 2 3 4 5 6 7 8 910

  /external/wpa_supplicant/examples/
plaintext.conf 0 # Plaintext (no encryption) network
  /external/wpa_supplicant_6/wpa_supplicant/examples/
plaintext.conf 0 # Plaintext (no encryption) network
  /external/chromium/net/http/
des_unittest.cc 17 // DES known plaintext (64-bits).
39 static const uint8 plaintext[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; local
46 DESEncrypt(key, plaintext, ciphertext);
  /external/openssl/crypto/evp/
evp_test.c 138 const unsigned char *plaintext,int pn,
151 hexdump(stdout,"Plaintext",plaintext,pn);
171 if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn))
225 fprintf(stderr,"Plaintext length mismatch got %d expected %d\n",
230 if(memcmp(out,plaintext,pn))
232 fprintf(stderr,"Plaintext mismatch\n");
234 hexdump(stderr,"Expected",plaintext,pn);
246 const unsigned char *plaintext,int pn,
256 test1(c,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec)
369 unsigned char *iv,*key,*plaintext,*ciphertext; local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
DOMSyntaxHighlighter.js 61 var plainText = line.substring(plainTextStart, column);
62 node.appendChild(document.createTextNode(plainText));
72 var plainText = line.substring(plainTextStart, line.length);
73 node.appendChild(document.createTextNode(plainText));
  /external/webkit/WebCore/platform/chromium/
ChromiumDataObject.cpp 44 plainText = "";
59 || !plainText.isEmpty()
71 , plainText(other.plainText)
PasteboardChromium.cpp 87 String plainText = frame->selectedText();
89 replaceNewlinesWithWindowsStyleNewlines(plainText);
91 replaceNBSPWithSpace(plainText);
93 ChromiumBridge::clipboardWriteSelection(html, url, plainText, canSmartCopyOrDelete);
99 String plainText(text);
100 replaceNewlinesWithWindowsStyleNewlines(plainText);
101 ChromiumBridge::clipboardWritePlainText(plainText);
156 String Pasteboard::plainText(Frame* frame)
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_encrypt.c 23 @param pt The plaintext to encrypt
25 @param length The length of the plaintext (octets)
eax_test.c 38 plaintext[MAXBLOCKSIZE],
53 /* plaintext */
73 /* plaintext */
93 /* plaintext */
102 /* test with header + nonce + plaintext */
114 /* plaintext */
129 /* test with header + nonce + plaintext [not even sizes!] */
141 /* plaintext */
231 tests[x].plaintext, tests[x].msglen, outct, outtag, &len)) != CRYPT_OK) {
259 if ((res != 1) || XMEMCMP(outct, tests[x].plaintext, tests[x].msglen))
    [all...]
eax_encrypt_authenticate_memory.c 29 @param pt The plaintext
30 @param ptlen The length of the plaintext (octets)
  /external/dropbear/libtomcrypt/src/encauth/ocb/
ocb_done_encrypt.c 23 @param pt Remaining plaintext (if any)
24 @param ptlen The length of the plaintext (octets)
ocb_encrypt_authenticate_memory.c 26 @param pt The plaintext
27 @param ptlen The length of the plaintext (octets)
  /external/dropbear/libtomcrypt/demos/
tv_gen.c 168 "The output of step N is used as the key and plaintext for step N+1 (key bytes repeated as required to fill the key)\n\n");
398 plaintext[MAXBLOCKSIZE*2], tag[MAXBLOCKSIZE]; local
402 fprintf(out, "EAX Test Vectors. Uses the 00010203...NN-1 pattern for header/nonce/plaintext/key. The outputs\n"
424 plaintext[z] = (unsigned char)(z & 255);
429 if ((err = eax_encrypt_authenticate_memory(x, key, kl, nonce, y1, header, y1, plaintext, y1, plaintext, tag, &len)) != CRYPT_OK) {
435 fprintf(out, "%02X", plaintext[z]);
458 plaintext[MAXBLOCKSIZE*2], tag[MAXBLOCKSIZE]; local
462 fprintf(out, "OCB Test Vectors. Uses the 00010203...NN-1 pattern for nonce/plaintext/key. The outputs\n"
489 plaintext[z] = (unsigned char)(z & 255)
522 plaintext[MAXBLOCKSIZE*2], tag[MAXBLOCKSIZE]; local
584 unsigned char key[MAXBLOCKSIZE], plaintext[MAXBLOCKSIZE*2], tag[MAXBLOCKSIZE]; local
    [all...]
  /external/dropbear/libtomcrypt/src/modes/ctr/
ctr_decrypt.c 23 @param pt [out] Plaintext
  /external/dropbear/libtomcrypt/src/modes/f8/
f8_decrypt.c 23 @param pt [out] Plaintext
  /external/dropbear/libtomcrypt/src/modes/ofb/
ofb_decrypt.c 23 @param pt [out] Plaintext
ofb_encrypt.c 22 @param pt Plaintext
24 @param len Length of plaintext (octets)
  /external/dbus/dbus/
dbus-auth.h 65 const DBusString *plaintext,
70 DBusString *plaintext);
  /external/dropbear/libtomcrypt/src/modes/cfb/
cfb_encrypt.c 22 @param pt Plaintext
24 @param len Length of plaintext (octets)
  /external/webkit/WebKit/chromium/src/
WebDragData.cpp 152 WebString WebDragData::plainText() const
155 return m_private->plainText;
158 void WebDragData::setPlainText(const WebString& plainText)
161 m_private->plainText = plainText;
  /development/samples/ApiDemos/res/values/
styles.xml 24 <style name="Theme.PlainText">
25 <item name="android:textAppearance">@style/TextAppearance.Theme.PlainText</item>
69 <style name="TextAppearance.Theme.PlainText" parent="android:TextAppearance.Theme">
  /external/dropbear/libtomcrypt/src/modes/cbc/
cbc_decrypt.c 24 @param pt [out] Plaintext
70 /* xor IV against plaintext */
cbc_encrypt.c 23 @param pt Plaintext
59 /* xor IV against plaintext */
  /external/dropbear/libtomcrypt/src/pk/katja/
katja_decrypt_key.c 24 @param out [out] The plaintext
25 @param outlen [in/out] The max size and resulting size of the plaintext (octets)
katja_encrypt_key.c 22 @param in The plaintext
23 @param inlen The length of the plaintext (octets)

Completed in 971 milliseconds

1 2 3 4 5 6 7 8 910