/external/syslinux/gpxe/src/util/ |
mucurses_test.c | 10 char secret[16]; local 15 get_iscsi_chap_secret(secret); 17 mvwprintw( stdscr, 3, 5, "password is \"%s\"", secret ); 26 char *title = "Set new iSCSI CHAP secret", 27 *msg = "Configure the iSCSI access secret", 29 WINDOW *secret; local 31 secret = newwin( stdscr->height / 2, 36 wborder( secret, '|', '|', '-', '-', '+', '+', '+', '+' ); 37 mvwprintw( secret, 1, 2, "%s", title ); 38 mvwhline( secret, 2, 1, '-' | secret->attrs, secret->width - 2 ) [all...] |
/external/wpa_supplicant_8/hostapd/ |
hostapd.radius_clients | 2 10.1.2.3 secret passphrase 3 192.168.1.0/24 another very secret passphrase
|
/external/selinux/mcstrans/share/examples/default/ |
default.test | 7 Secret==s2 12 Unclassified-Secret==s1-s2 15 SystemLow-Secret==s0-s2 16 SystemLow-Secret:A==s0-s2:c0 17 SystemLow-Secret:B==s0-s2:c1 18 SystemLow-Secret:AB==s0-s2:c0,c1 19 Unclassified-Secret:A==s1-s2:c0 20 Unclassified-Secret:B==s1-s2:c1 21 Unclassified-Secret:AB==s1-s2:c0,c1 22 Secret-Secret:A==s2-s2:c [all...] |
setrans.conf | 16 # Secret with compartments A and B. 26 # Secret level with compartments 27 s2=Secret 33 s1-s2=Unclassified-Secret 36 # ranges for Secret with compartments 37 s0-s2=SystemLow-Secret 38 s0-s2:c0=SystemLow-Secret:A 39 s0-s2:c1=SystemLow-Secret:B 40 s0-s2:c0,c1=SystemLow-Secret:AB 41 s1-s2:c0=Unclassified-Secret: [all...] |
/external/selinux/mcstrans/share/examples/include/ |
default.test | 7 Secret==s2 12 Unclassified-Secret==s1-s2 15 SystemLow-Secret==s0-s2 16 SystemLow-Secret:A==s0-s2:c0 17 SystemLow-Secret:B==s0-s2:c1 18 SystemLow-Secret:AB==s0-s2:c0,c1 19 Unclassified-Secret:A==s1-s2:c0 20 Unclassified-Secret:B==s1-s2:c1 21 Unclassified-Secret:AB==s1-s2:c0,c1 22 Secret-Secret:A==s2-s2:c [all...] |
/external/selinux/mcstrans/share/examples/urcsts-via-include/setrans.d/ |
s.conf | 3 s7=SECRET
|
ts.conf | 3 s9=TOP SECRET
|
/external/selinux/mcstrans/share/examples/include/setrans.d/ |
include-example | 16 # Secret with compartments A and B. 26 # Secret level with compartments 27 s2=Secret 33 s1-s2=Unclassified-Secret 36 # ranges for Secret with compartments 37 s0-s2=SystemLow-Secret 38 s0-s2:c0=SystemLow-Secret:A 39 s0-s2:c1=SystemLow-Secret:B 40 s0-s2:c0,c1=SystemLow-Secret:AB 41 s1-s2:c0=Unclassified-Secret: [all...] |
/external/google-tv-pairing-protocol/cpp/src/polo/encoding/ |
secretencoder.h | 25 // Encodes and decodes secret challenges. The decoded secret is displayed to the 27 // secret is encoded for transmission on the wire and used for computing pairing 33 // Encodes a byte array representation of a secret to a string. 34 // @param secret the secret bytes 35 // @return a string representation of the given secret 37 const std::vector<uint8_t>& secret) const = 0; 39 // Decodes the string representation of the secret to a byte array. 40 // @param secret a string representation of the secre [all...] |
/external/curl/tests/data/ |
test836 | 15 REPLY "LOGIN user.one secret" A002 OK LOGIN completed
16 REPLY "LOGIN user.two secret" B002 OK LOGIN completed
39 'imap://%HOSTIP:%IMAPPORT/836/;UID=1' -u user.one:secret -: 'imap://%HOSTIP:%IMAPPORT/836/;UID=2' -u user.two:secret 48 A002 LOGIN user.one secret
53 B002 LOGIN user.two secret
|
test882 | 15 REPLY "PASS secret" +OK Login successful
38 pop3://%HOSTIP:%POP3PORT/882001 -u user.one:secret -: pop3://%HOSTIP:%POP3PORT/882002 -u user.two:secret 48 PASS secret
53 PASS secret
|
test815 | 30 imap://%HOSTIP:%IMAPPORT/815 -X 'STORE 123 +Flags \Deleted' -u user:secret -: imap://%HOSTIP:%IMAPPORT/815 -X CLOSE -u user:secret 39 A002 LOGIN user secret
|
test803 | 27 'imap://%HOSTIP:%IMAPPORT/803;UIDVALIDITY=12345/;UID=123' -u user:secret 40 A002 LOGIN user secret
|
test806 | 30 imap://%HOSTIP:%IMAPPORT/806 -u user:secret 39 A002 LOGIN user secret
|
test807 | 31 imap://%HOSTIP:%IMAPPORT -u user:secret -X 'LSUB "807" *' 40 A002 LOGIN user secret
|
test809 | 29 imap://%HOSTIP:%IMAPPORT -u user:secret -X 'STATUS 809 (UIDNEXT MESSAGES)' 38 A002 LOGIN user secret
|
test810 | 28 imap://%HOSTIP:%IMAPPORT/810?NEW -u user:secret 37 A002 LOGIN user secret
|
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/message/ |
secretmessage.h | 27 // Message used to pass the pairing secret. The secret consists of encoded 31 // Creates a new message for the given secret. 32 // @param secret the secret 33 explicit SecretMessage(const std::vector<uint8_t>& secret); 35 // Gets the secret. 36 const std::vector<uint8_t>& secret() const;
|
secretackmessage.h | 27 // Ack for a secret message. 30 // Creates a new ack for the given secret. 31 // @param secret the secret 32 explicit SecretAckMessage(const std::vector<uint8_t>& secret); 34 // Gets the secret. 35 const std::vector<uint8_t>& secret() const;
|
/external/google-tv-pairing-protocol/cpp/tests/polo/encoding/ |
hexadecimalencodertest.cc | 24 std::vector<unsigned char> secret(4); 25 secret[0] = 0xAA; 26 secret[1] = 0xBB; 27 secret[2] = 0xCC; 28 secret[3] = 0xDD; 30 std::string result = encoder.EncodeToString(secret); 38 std::string secret("AABBCCDD"); 40 std::vector<unsigned char> result = encoder.DecodeToBytes(secret);
|
/external/selinux/mcstrans/share/examples/urcsts/ |
README | 5 SECRET 6 TOP SECRET
|
/external/wpa_supplicant_8/src/crypto/ |
sha256-tlsprf.c | 17 * @secret: Key for PRF 29 void tls_prf_sha256(const u8 *secret, size_t secret_len, const char *label, 48 * A(0) = seed, A(i) = HMAC(secret, A(i-1)) 49 * P_hash = HMAC(secret, A(1) + seed) + HMAC(secret, A(2) + seed) + .. 50 * PRF(secret, label, seed) = P_SHA256(secret, label + seed) 53 hmac_sha256_vector(secret, secret_len, 2, &addr[1], &len[1], A); 57 hmac_sha256_vector(secret, secret_len, 3, addr, len, P); 58 hmac_sha256(secret, secret_len, A, SHA256_MAC_LEN, A) [all...] |
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wpa-psk-tkip.conf | 11 psk="secret passphrase"
|
/prebuilts/go/darwin-x86/test/fixedbugs/issue10700.dir/ |
other.go | 9 secret()
|
/prebuilts/go/linux-x86/test/fixedbugs/issue10700.dir/ |
other.go | 9 secret()
|