Home
last modified time | relevance | path

Searched refs:cleartext (Results 1 – 25 of 44) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-tls-securepair-server.js51 assert.ok(pair.cleartext.writable);
60 pair.cleartext.write('hello\r\n');
61 log(pair.cleartext.getPeerCertificate());
62 log(pair.cleartext.getCipher());
65 pair.cleartext.on('data', function(data) {
67 pair.cleartext.write(data);
74 pair.cleartext.on('error', function(err) {
Dtest-tls-timeout-server-2.js36 const server = tls.createServer(options, common.mustCall(function(cleartext) { argument
37 const s = cleartext.setTimeout(50, function() {
38 cleartext.destroy();
Dtest-https-timeout-server-2.js40 server.on('secureConnection', function(cleartext) { argument
41 const s = cleartext.setTimeout(50, function() {
42 cleartext.destroy();
Dtest-tls-ocsp-callback.js61 const server = tls.createServer(options, common.mustCall((cleartext) => {
62 cleartext.on('error', function(er) {
69 cleartext.end();
Dtest-tls-session-cache.js59 const server = tls.createServer(options, function(cleartext) { argument
60 cleartext.on('error', function(er) {
68 cleartext.end('');
Dtest-tls-peer-certificate-encoding.js38 const server = tls.createServer(options, (cleartext) => {
39 cleartext.end('World');
Dtest-tls-peer-certificate-multi-keys.js36 const server = tls.createServer(options, function(cleartext) { argument
37 cleartext.end('World');
/third_party/node/test/sequential/
Dtest-tls-securepair-client.js52 assert.strictEqual(pair.cleartext.getPeerCertificate().ext_key_usage.length,
54 assert.strictEqual(pair.cleartext.getPeerCertificate().ext_key_usage[0],
130 assert.ok(pair.cleartext.writable);
140 pair.cleartext.write('hello\r\n', function() {
149 pair.cleartext.getPeerCertificate());
151 pair.cleartext.getCipher());
155 pair.cleartext.on('data', function(d) {
Dtest-tls-session-timeout.js112 const server = tls.createServer(options, (cleartext) => {
113 cleartext.on('error', (er) => {
117 cleartext.end();
/third_party/openssl/test/recipes/
D15-test_mp_rsa.t24 my $cleartext = data_file("plain_text");
70 '-encrypt', '-in', $cleartext,
77 '-encrypt', '-in', $cleartext,
97 open(my $fh, "<", $cleartext) or return 0;
/third_party/openssl/test/
Dmodes_internal_test.c188 unsigned char cleartext[64], ciphertext[64], vector[64]; in execute_cts128() local
206 size = fixture->decrypt_block(ciphertext, cleartext, len, in execute_cts128()
210 || !TEST_mem_eq(cleartext, len, test_input, len) in execute_cts128()
226 if (!TEST_size_t_eq(fixture->decrypt_stream(ciphertext, cleartext, len, in execute_cts128()
230 || !TEST_mem_eq(cleartext, len, test_input, len) in execute_cts128()
/third_party/node/lib/
Dtls.js365 this.cleartext = new exports.TLSSocket(socket2, {
372 this.cleartext.once('secure', () => this.emit('secure'));
376 this.cleartext.destroy();
/third_party/nghttp2/doc/sources/
Dh2load-howto.rst35 cleartext connection, the default protocol is HTTP/2. To change the
36 protocol in cleartext connection, use :option:`--no-tls-proto` option.
38 cleartext and SSL/TLS connections.
/third_party/openssl/doc/man3/
DSMIME_write_CMS.pod26 If B<CMS_DETACHED> is set then cleartext signing will be used, this option only
37 If cleartext signing is being used and B<CMS_STREAM> not set then the data must
DSMIME_write_PKCS7.pod26 If B<PKCS7_DETACHED> is set then cleartext signing will be used,
38 If cleartext signing is being used and B<PKCS7_STREAM> not set then
DSMIME_read_CMS.pod19 If cleartext signing is used then the content is saved in a memory bio which is
DSMIME_read_PKCS7.pod19 If cleartext signing is used then the content is saved in
/third_party/node/benchmark/tls/
Dsecure-pair.js92 serverPair.cleartext.pipe(client);
/third_party/grpc/src/objective-c/tests/MacTests/
DStressTestsCleartext.m31 /** Tests in InteropTests.m, sending the RPCs to a local cleartext server. */
/third_party/grpc/src/objective-c/tests/InteropTests/
DInteropTestsLocalCleartext.m35 /** Tests in InteropTests.m, sending the RPCs to a local cleartext server. */
/third_party/grpc/src/objective-c/tests/PerfTests/
DPerfTestsCFStreamCleartext.m37 /** Tests in PerfTests.m, sending the RPCs to a local cleartext server. */
DPerfTestsNoCFStreamCleartext.m37 /** Tests in PerfTests.m, sending the RPCs to a local cleartext server. */
/third_party/python/Doc/library/
Dcrypt.rst162 cleartext = getpass.getpass()
163 return compare_hash(crypt.crypt(cleartext, cryptedpasswd), cryptedpasswd)
/third_party/openssl/doc/man1/
Dpasswd.pod89 In the output list, prepend the cleartext password and a TAB character
/third_party/mbedtls/docs/proposed/
Dpsa-driver-developer-guide.md20 * **Transparent** drivers implement cryptographic operations on keys that are provided in cleartext

12