Searched defs:password (Results 176 - 200 of 419) sorted by path

1234567891011>>

/external/chromium_org/third_party/boringssl/src/crypto/pkcs8/
H A Dpkcs8.c619 uint8_t *password; member in struct:pkcs12_context
752 if (!pbe_crypt(algor, ctx->password, ctx->password_len,
802 pki = PKCS8_decrypt_pbe(encrypted, ctx->password, ctx->password_len);
859 CBS *ber_in, const char *password) {
935 if (!ascii_to_ucs2(password, strlen(password), &ctx.password,
977 if (!pkcs12_key_gen_raw(ctx.password, ctx.password_len, CBS_data(&salt),
1002 if (ctx.password) {
1003 OPENSSL_free(ctx.password);
858 PKCS12_get_key_and_certs(EVP_PKEY **out_key, STACK_OF(X509) *out_certs, CBS *ber_in, const char *password) argument
1111 PKCS12_parse(const PKCS12 *p12, const char *password, EVP_PKEY **out_pkey, X509 **out_cert, STACK_OF(X509) **out_ca_certs) argument
[all...]
/external/chromium_org/third_party/boringssl/src/tool/
H A Dpkcs12.cc84 printf("Enter password: ");
87 char password[256]; local
90 n = read(0, &password[off], sizeof(password) - 1 - off);
94 } while ((n > 0 && memchr(password, '\n', off) == NULL &&
95 off < sizeof(password) - 1) ||
98 char *newline = reinterpret_cast<char*>(memchr(password, '\n', off));
110 if (!PKCS12_get_key_and_certs(&key, certs, &pkcs12, password)) {
/external/chromium_org/third_party/freetype/include/freetype/
H A Dt1tables.h152 FT_Long password; member in struct:PS_PrivateRec_
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpclient-4.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
H A Dpeerconnection_jni.cc2946 GetFieldID(jni, j_ice_server_class, "password", "Ljava/lang/String;");
2951 jstring password = reinterpret_cast<jstring>( local
2956 server.password = JavaToStdString(jni, password);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DPeerConnection.java94 public final String password; field in class:PeerConnection.IceServer
101 public IceServer(String uri, String username, String password) { argument
104 this.password = password;
108 return uri + "[" + username + ":" + password + "]";
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCICEServer.h33 // The server URI, username, and password.
36 @property(nonatomic, copy, readonly) NSString* password; variable
38 // Initializer for RTCICEServer taking uri, username, and password.
41 password:(NSString*)password;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dpeerconnectioninterface.h187 std::string password; member in struct:webrtc::PeerConnectionInterface::IceServer
405 const std::string& password,
410 password(password),
415 std::string password; member in struct:webrtc::PortAllocatorFactoryInterface::TurnConfiguration
402 TurnConfiguration(const std::string& address, int port, const std::string& username, const std::string& password, const std::string& transport_type, bool secure) argument
H A Dpeerconnectioninterface_unittest.cc59 static const char kTurnPassword[] = "password";
252 const std::string& password,
257 server.password = password;
309 port_allocator_factory_->turn_configs()[0].password);
251 CreatePeerConnection(const std::string& uri, const std::string& password, webrtc::MediaConstraintsInterface* constraints) argument
H A Dwebrtcsdp.cc142 static const char kAttributeCandidatePassword[] = "password";
1057 // Empty string as the candidate username and password.
1059 // TODO: Remove the username/password extension, which is currently
1062 std::string password; local
1074 password = fields[++i];
1085 address, priority, username, password, candidate_type, network_name,
1292 // ice-pwd-att = "ice-pwd" ":" password
2705 ASSERT((*it).password().empty());
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dcandidate.h53 const std::string& username, const std::string& password,
57 priority_(priority), username_(username), password_(password),
103 const std::string & password() const { return password_; } function in class:cricket::Candidate
104 void set_password(const std::string & password) { password_ = password; } argument
51 Candidate(const std::string& id, int component, const std::string& protocol, const rtc::SocketAddress& address, uint32 priority, const std::string& username, const std::string& password, const std::string& type, const std::string& network_name, uint32 generation, const std::string& foundation) argument
H A Dport.cc173 const std::string& username_fragment, const std::string& password)
184 password_(password),
198 const std::string& password)
210 password_(password),
222 // If the username_fragment and password are empty, we should just create one.
828 request->AddMessageIntegrity(connection_->remote_candidate().password());
1042 data, size, remote_candidate().password())) {
1407 new_local_candidate.set_password(local_candidate().password());
171 Port(rtc::Thread* thread, rtc::PacketSocketFactory* factory, rtc::Network* network, const rtc::IPAddress& ip, const std::string& username_fragment, const std::string& password) argument
194 Port(rtc::Thread* thread, const std::string& type, rtc::PacketSocketFactory* factory, rtc::Network* network, const rtc::IPAddress& ip, int min_port, int max_port, const std::string& username_fragment, const std::string& password) argument
H A Dport.h129 const std::string& username_fragment, const std::string& password);
134 const std::string& password);
189 // ICE requires a single username/password per content/media line. So the
204 const std::string& password() const { return password_; } function in class:cricket::Port
375 // authenticated with this username_fragment and password.
376 // PortAllocatorSession will provide these username_fragment and password.
H A Dport_unittest.cc123 const std::string& username_fragment, const std::string& password)
125 min_port, max_port, username_fragment, password) {
570 const std::string& password) {
572 addr.ipaddr(), 0, 0, username, password);
578 const std::string& password,
582 TestPort* port = CreateTestPort(addr, username, password);
1604 in_msg->AddMessageIntegrity("password");
120 TestPort(rtc::Thread* thread, const std::string& type, rtc::PacketSocketFactory* factory, rtc::Network* network, const rtc::IPAddress& ip, int min_port, int max_port, const std::string& username_fragment, const std::string& password) argument
568 CreateTestPort(const rtc::SocketAddress& addr, const std::string& username, const std::string& password) argument
576 CreateTestPort(const rtc::SocketAddress& addr, const std::string& username, const std::string& password, cricket::IceProtocolType type, cricket::IceRole role, int tiebreaker) argument
H A Dportallocator.h81 // TODO(mallinath) - Change username and password to ice_ufrag and ice_pwd.
85 const std::string& password,
112 const std::string& password() const { return password_; } function in class:cricket::PortAllocatorSession
H A Drelayport.cc196 const std::string& password)
198 username, password),
192 RelayPort( rtc::Thread* thread, rtc::PacketSocketFactory* factory, rtc::Network* network, const rtc::IPAddress& ip, int min_port, int max_port, const std::string& username, const std::string& password) argument
H A Drelayport.h59 const std::string& password) {
61 username, password);
89 const std::string& password);
55 Create( rtc::Thread* thread, rtc::PacketSocketFactory* factory, rtc::Network* network, const rtc::IPAddress& ip, int min_port, int max_port, const std::string& username, const std::string& password) argument
H A Drelayserver.cc672 const std::string& password, uint32 lifetime)
673 : server_(server), username_(username), password_(password),
670 RelayServerBinding( RelayServer* server, const std::string& username, const std::string& password, uint32 lifetime) argument
H A Drelayserver.h48 // All connections created with the same username/password are bound together.
203 const std::string& password, uint32 lifetime);
209 const std::string& password() { return password_; } function in class:cricket::RelayServerBinding
H A Dstun.cc148 const std::string& password) {
213 password.c_str(), password.size(),
226 bool StunMessage::AddMessageIntegrity(const std::string& password) { argument
227 return AddMessageIntegrity(password.c_str(), password.size());
909 const std::string& password,
913 // key = MD5(username ":" realm ":" SASLprep(password))
918 input += password;
147 ValidateMessageIntegrity(const char* data, size_t size, const std::string& password) argument
907 ComputeStunCredentialHash(const std::string& username, const std::string& realm, const std::string& password, std::string* hash) argument
H A Dstunport.cc181 const std::string& username, const std::string& password)
183 username, password),
195 const std::string& username, const std::string& password)
197 username, password),
177 UDPPort(rtc::Thread* thread, rtc::PacketSocketFactory* factory, rtc::Network* network, rtc::AsyncPacketSocket* socket, const std::string& username, const std::string& password) argument
191 UDPPort(rtc::Thread* thread, rtc::PacketSocketFactory* factory, rtc::Network* network, const rtc::IPAddress& ip, int min_port, int max_port, const std::string& username, const std::string& password) argument
H A Dstunport.h53 const std::string& password) {
55 username, password);
69 const std::string& password) {
72 username, password);
121 const std::string& username, const std::string& password);
125 const std::string& username, const std::string& password);
219 const std::string& password,
223 username, password, servers);
241 const std::string& username, const std::string& password,
244 password) {
48 Create(rtc::Thread* thread, rtc::PacketSocketFactory* factory, rtc::Network* network, rtc::AsyncPacketSocket* socket, const std::string& username, const std::string& password) argument
63 Create(rtc::Thread* thread, rtc::PacketSocketFactory* factory, rtc::Network* network, const rtc::IPAddress& ip, int min_port, int max_port, const std::string& username, const std::string& password) argument
212 Create( rtc::Thread* thread, rtc::PacketSocketFactory* factory, rtc::Network* network, const rtc::IPAddress& ip, int min_port, int max_port, const std::string& username, const std::string& password, const ServerAddresses& servers) argument
238 StunPort(rtc::Thread* thread, rtc::PacketSocketFactory* factory, rtc::Network* network, const rtc::IPAddress& ip, int min_port, int max_port, const std::string& username, const std::string& password, const ServerAddresses& servers) argument
[all...]
H A Dtcpport.cc40 const std::string& password, bool allow_listen)
42 username, password),
36 TCPPort(rtc::Thread* thread, rtc::PacketSocketFactory* factory, rtc::Network* network, const rtc::IPAddress& ip, int min_port, int max_port, const std::string& username, const std::string& password, bool allow_listen) argument
H A Dtcpport.h54 const std::string& password,
58 username, password, allow_listen);
80 const std::string& password, bool allow_listen);
48 Create(rtc::Thread* thread, rtc::PacketSocketFactory* factory, rtc::Network* network, const rtc::IPAddress& ip, int min_port, int max_port, const std::string& username, const std::string& password, bool allow_listen) argument

Completed in 477 milliseconds

1234567891011>>