Home
last modified time | relevance | path

Searched refs:s3 (Results 1 – 25 of 461) sorted by relevance

12345678910>>...19

/external/openssl/ssl/
Dt1_reneg.c121 if((s->s3->previous_client_finished_len+1) > maxlen) in ssl_add_clienthello_renegotiate_ext()
128 *p = s->s3->previous_client_finished_len; in ssl_add_clienthello_renegotiate_ext()
131 memcpy(p, s->s3->previous_client_finished, in ssl_add_clienthello_renegotiate_ext()
132 s->s3->previous_client_finished_len); in ssl_add_clienthello_renegotiate_ext()
135 s->s3->previous_client_finished_len ? "Non-empty" : "Empty"); in ssl_add_clienthello_renegotiate_ext()
139 *len=s->s3->previous_client_finished_len + 1; in ssl_add_clienthello_renegotiate_ext()
171 if(ilen != s->s3->previous_client_finished_len) in ssl_parse_clienthello_renegotiate_ext()
178 if(memcmp(d, s->s3->previous_client_finished, in ssl_parse_clienthello_renegotiate_ext()
179 s->s3->previous_client_finished_len)) in ssl_parse_clienthello_renegotiate_ext()
190 s->s3->send_connection_binding=1; in ssl_parse_clienthello_renegotiate_ext()
[all …]
Ds3_enc.c192 EVP_DigestUpdate(&s1,s->s3->server_random,SSL3_RANDOM_SIZE); in ssl3_generate_key_block()
193 EVP_DigestUpdate(&s1,s->s3->client_random,SSL3_RANDOM_SIZE); in ssl3_generate_key_block()
232 is_exp=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher); in ssl3_change_cipher_state()
233 c=s->s3->tmp.new_sym_enc; in ssl3_change_cipher_state()
234 m=s->s3->tmp.new_hash; in ssl3_change_cipher_state()
238 if (s->s3->tmp.new_compression == NULL) in ssl3_change_cipher_state()
241 comp=s->s3->tmp.new_compression->method; in ssl3_change_cipher_state()
271 if (s->s3->rrec.comp == NULL) in ssl3_change_cipher_state()
272 s->s3->rrec.comp=(unsigned char *) in ssl3_change_cipher_state()
274 if (s->s3->rrec.comp == NULL) in ssl3_change_cipher_state()
[all …]
Ds3_pkt.c140 rb = &(s->s3->rbuf); in ssl3_read_n()
296 rr= &(s->s3->rrec); in ssl3_get_record()
303 if (extra && !s->s3->init_extra) in ssl3_get_record()
316 n=ssl3_read_n(s, SSL3_RT_HEADER_LENGTH, s->s3->rbuf.len, 0); in ssl3_get_record()
352 if (rr->length > s->s3->rbuf.len - SSL3_RT_HEADER_LENGTH) in ssl3_get_record()
545 rr= &(ssl->s3->rrec); in ssl3_do_uncompress()
563 wr= &(ssl->s3->wrec); in ssl3_do_compress()
587 tot=s->s3->wnum; in ssl3_write_bytes()
588 s->s3->wnum=0; in ssl3_write_bytes()
612 s->s3->wnum=tot; in ssl3_write_bytes()
[all …]
Ds3_both.c163 sender,slen,s->s3->tmp.finish_md); in ssl3_send_finished()
164 s->s3->tmp.finish_md_len = i; in ssl3_send_finished()
165 memcpy(p, s->s3->tmp.finish_md, i); in ssl3_send_finished()
174 memcpy(s->s3->previous_client_finished, in ssl3_send_finished()
175 s->s3->tmp.finish_md, i); in ssl3_send_finished()
176 s->s3->previous_client_finished_len=i; in ssl3_send_finished()
181 memcpy(s->s3->previous_server_finished, in ssl3_send_finished()
182 s->s3->tmp.finish_md, i); in ssl3_send_finished()
183 s->s3->previous_server_finished_len=i; in ssl3_send_finished()
223 s->s3->tmp.peer_finish_md_len = s->method->ssl3_enc->final_finish_mac(s, in ssl3_take_mac()
[all …]
Dt1_enc.c300 s->s3->server_random,SSL3_RANDOM_SIZE, in tls1_generate_key_block()
301 s->s3->client_random,SSL3_RANDOM_SIZE, in tls1_generate_key_block()
343 is_export=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher); in tls1_change_cipher_state()
344 c=s->s3->tmp.new_sym_enc; in tls1_change_cipher_state()
345 m=s->s3->tmp.new_hash; in tls1_change_cipher_state()
346 mac_type = s->s3->tmp.new_mac_pkey_type; in tls1_change_cipher_state()
348 comp=s->s3->tmp.new_compression; in tls1_change_cipher_state()
354 s->s3->tmp.new_cipher->algorithm_mkey, in tls1_change_cipher_state()
355 s->s3->tmp.new_cipher->algorithm_auth, in tls1_change_cipher_state()
360 printf("\tkey_block: len= %d, data= ", s->s3->tmp.key_block_length); in tls1_change_cipher_state()
[all …]
Dt1_lib.c370 && !s->s3->send_connection_binding) in ssl_add_clienthello_tlsext()
559 if (s->s3->client_opaque_prf_input != NULL && in ssl_add_clienthello_tlsext()
562 size_t col = s->s3->client_opaque_prf_input_len; in ssl_add_clienthello_tlsext()
572 memcpy(ret, s->s3->client_opaque_prf_input, col); in ssl_add_clienthello_tlsext()
641 if (s->ctx->next_proto_select_cb && !s->s3->tmp.finish_md_len) in ssl_add_clienthello_tlsext()
662 if (s->alpn_client_proto_list && !s->s3->tmp.finish_md_len) in ssl_add_clienthello_tlsext()
711 if (s->version == SSL3_VERSION && !s->s3->send_connection_binding) in ssl_add_serverhello_tlsext()
725 if(s->s3->send_connection_binding) in ssl_add_serverhello_tlsext()
790 if (s->s3->server_opaque_prf_input != NULL && in ssl_add_serverhello_tlsext()
793 size_t sol = s->s3->server_opaque_prf_input_len; in ssl_add_serverhello_tlsext()
[all …]
/external/chromium_org/third_party/openssl/openssl/ssl/
Dt1_reneg.c121 if((s->s3->previous_client_finished_len+1) > maxlen) in ssl_add_clienthello_renegotiate_ext()
128 *p = s->s3->previous_client_finished_len; in ssl_add_clienthello_renegotiate_ext()
131 memcpy(p, s->s3->previous_client_finished, in ssl_add_clienthello_renegotiate_ext()
132 s->s3->previous_client_finished_len); in ssl_add_clienthello_renegotiate_ext()
135 s->s3->previous_client_finished_len ? "Non-empty" : "Empty"); in ssl_add_clienthello_renegotiate_ext()
139 *len=s->s3->previous_client_finished_len + 1; in ssl_add_clienthello_renegotiate_ext()
171 if(ilen != s->s3->previous_client_finished_len) in ssl_parse_clienthello_renegotiate_ext()
178 if(memcmp(d, s->s3->previous_client_finished, in ssl_parse_clienthello_renegotiate_ext()
179 s->s3->previous_client_finished_len)) in ssl_parse_clienthello_renegotiate_ext()
190 s->s3->send_connection_binding=1; in ssl_parse_clienthello_renegotiate_ext()
[all …]
Ds3_enc.c192 EVP_DigestUpdate(&s1,s->s3->server_random,SSL3_RANDOM_SIZE); in ssl3_generate_key_block()
193 EVP_DigestUpdate(&s1,s->s3->client_random,SSL3_RANDOM_SIZE); in ssl3_generate_key_block()
232 is_exp=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher); in ssl3_change_cipher_state()
233 c=s->s3->tmp.new_sym_enc; in ssl3_change_cipher_state()
234 m=s->s3->tmp.new_hash; in ssl3_change_cipher_state()
238 if (s->s3->tmp.new_compression == NULL) in ssl3_change_cipher_state()
241 comp=s->s3->tmp.new_compression->method; in ssl3_change_cipher_state()
271 if (s->s3->rrec.comp == NULL) in ssl3_change_cipher_state()
272 s->s3->rrec.comp=(unsigned char *) in ssl3_change_cipher_state()
274 if (s->s3->rrec.comp == NULL) in ssl3_change_cipher_state()
[all …]
Ds3_pkt.c140 rb = &(s->s3->rbuf); in ssl3_read_n()
296 rr= &(s->s3->rrec); in ssl3_get_record()
303 if (extra && !s->s3->init_extra) in ssl3_get_record()
316 n=ssl3_read_n(s, SSL3_RT_HEADER_LENGTH, s->s3->rbuf.len, 0); in ssl3_get_record()
352 if (rr->length > s->s3->rbuf.len - SSL3_RT_HEADER_LENGTH) in ssl3_get_record()
545 rr= &(ssl->s3->rrec); in ssl3_do_uncompress()
563 wr= &(ssl->s3->wrec); in ssl3_do_compress()
587 tot=s->s3->wnum; in ssl3_write_bytes()
588 s->s3->wnum=0; in ssl3_write_bytes()
612 s->s3->wnum=tot; in ssl3_write_bytes()
[all …]
Ds3_both.c163 sender,slen,s->s3->tmp.finish_md); in ssl3_send_finished()
164 s->s3->tmp.finish_md_len = i; in ssl3_send_finished()
165 memcpy(p, s->s3->tmp.finish_md, i); in ssl3_send_finished()
174 memcpy(s->s3->previous_client_finished, in ssl3_send_finished()
175 s->s3->tmp.finish_md, i); in ssl3_send_finished()
176 s->s3->previous_client_finished_len=i; in ssl3_send_finished()
181 memcpy(s->s3->previous_server_finished, in ssl3_send_finished()
182 s->s3->tmp.finish_md, i); in ssl3_send_finished()
183 s->s3->previous_server_finished_len=i; in ssl3_send_finished()
223 s->s3->tmp.peer_finish_md_len = s->method->ssl3_enc->final_finish_mac(s, in ssl3_take_mac()
[all …]
Dt1_enc.c300 s->s3->server_random,SSL3_RANDOM_SIZE, in tls1_generate_key_block()
301 s->s3->client_random,SSL3_RANDOM_SIZE, in tls1_generate_key_block()
342 const EVP_AEAD *aead = s->s3->tmp.new_aead; in tls1_change_cipher_state_aead()
370 …(s->s3->tmp.new_cipher->algorithm2 & SSL_CIPHER_ALGORITHM2_VARIABLE_NONCE_INCLUDED_IN_RECORD) != 0; in tls1_change_cipher_state_aead()
393 const EVP_CIPHER *cipher = s->s3->tmp.new_sym_enc; in tls1_change_cipher_state_cipher()
394 const char is_export = SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) != 0; in tls1_change_cipher_state_cipher()
406 if (s->s3->tmp.new_cipher->algorithm2 & TLS1_STREAM_MAC) in tls1_change_cipher_state_cipher()
422 memcpy(s->s3->read_mac_secret, mac_secret, mac_secret_len); in tls1_change_cipher_state_cipher()
423 s->s3->read_mac_secret_size = mac_secret_len; in tls1_change_cipher_state_cipher()
427 if (s->s3->tmp.new_cipher->algorithm2 & TLS1_STREAM_MAC) in tls1_change_cipher_state_cipher()
[all …]
/external/openssl/crypto/aes/asm/
Daes-armv4.pl41 $s3="r3";
195 ldrb $s3,[$rounds,#15]
201 orr $s3,$s3,$t1,lsl#8
202 orr $s3,$s3,$t2,lsl#16
203 orr $s3,$s3,$t3,lsl#24
208 ldr $s3,[$rounds,#12]
213 rev $s3,$s3
224 rev $s3,$s3
229 str $s3,[$rounds,#12]
250 mov $t1,$s3,lsr#24
[all …]
Daes-s390x.pl111 $s3="%r11";
265 llgf $s3,12($inp)
274 st $s3,12($out)
287 x $s3,12($key)
332 srlg $ra,$s3,`8-3` # i1
333 sllg $t1,$s3,`0+3` # i0
343 srlg $i3,$s3,`16-3` # i2
345 srl $s3,`24-3`
347 nr $s3,$mask
357 l $s3,0($s3,$tbl) # Te0[s3>>24]
[all …]
Daes-ppc.pl76 $s3="r11";
371 lwz $s3,12($inp)
377 stw $s3,12($out)
409 lbz $s3,15($inp)
412 insrwi $s3,$acc12,8,0
414 insrwi $s3,$acc13,8,8
416 insrwi $s3,$acc14,8,16
441 extrwi $acc12,$s3,8,0
443 extrwi $acc13,$s3,8,8
445 extrwi $acc14,$s3,8,16
[all …]
Daes-586.pl200 $s3="edx";
308 &rotr ($s3,16); # 13,12,15,14
313 &movz ($v0,&HB($s3)); # 13,12,15*,14
320 &movz ($v0,&LB($s3)); # 13,12,15,14*
323 &and ($s3,0xffff0000); # 13,12, -, -
326 &or ($s3,$s1); # 13,12, 7, 6
333 &movz ($v0,&HB($s3)); # 13,12, 7*, 6
337 &mov ($v0,$s3);
346 &movz ($v0,&LB($s3)); # 13,12, 7, 6*
347 &shr ($s3,16); # , ,13,12
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/aes/asm/
Daes-armv4.pl41 $s3="r3";
195 ldrb $s3,[$rounds,#15]
201 orr $s3,$s3,$t1,lsl#8
202 orr $s3,$s3,$t2,lsl#16
203 orr $s3,$s3,$t3,lsl#24
208 ldr $s3,[$rounds,#12]
213 rev $s3,$s3
224 rev $s3,$s3
229 str $s3,[$rounds,#12]
250 mov $t1,$s3,lsr#24
[all …]
Daes-s390x.pl111 $s3="%r11";
265 llgf $s3,12($inp)
274 st $s3,12($out)
287 x $s3,12($key)
332 srlg $ra,$s3,`8-3` # i1
333 sllg $t1,$s3,`0+3` # i0
343 srlg $i3,$s3,`16-3` # i2
345 srl $s3,`24-3`
347 nr $s3,$mask
357 l $s3,0($s3,$tbl) # Te0[s3>>24]
[all …]
Daes-ppc.pl76 $s3="r11";
371 lwz $s3,12($inp)
377 stw $s3,12($out)
409 lbz $s3,15($inp)
412 insrwi $s3,$acc12,8,0
414 insrwi $s3,$acc13,8,8
416 insrwi $s3,$acc14,8,16
441 extrwi $acc12,$s3,8,0
443 extrwi $acc13,$s3,8,8
445 extrwi $acc14,$s3,8,16
[all …]
Daes-586.pl200 $s3="edx";
308 &rotr ($s3,16); # 13,12,15,14
313 &movz ($v0,&HB($s3)); # 13,12,15*,14
320 &movz ($v0,&LB($s3)); # 13,12,15,14*
323 &and ($s3,0xffff0000); # 13,12, -, -
326 &or ($s3,$s1); # 13,12, 7, 6
333 &movz ($v0,&HB($s3)); # 13,12, 7*, 6
337 &mov ($v0,$s3);
346 &movz ($v0,&LB($s3)); # 13,12, 7, 6*
347 &shr ($s3,16); # , ,13,12
[all …]
/external/openssh/
Drijndael.c859 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelEncrypt() local
871 s3 = GETU32(pt + 12) ^ rk[3]; in rijndaelEncrypt()
874 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4]; in rijndaelEncrypt()
875 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5]; in rijndaelEncrypt()
876 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6]; in rijndaelEncrypt()
877 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7]; in rijndaelEncrypt()
882 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11]; in rijndaelEncrypt()
884 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12]; in rijndaelEncrypt()
885 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13]; in rijndaelEncrypt()
886 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14]; in rijndaelEncrypt()
[all …]
/external/qemu/
Daes.c889 u32 s0, s1, s2, s3, t0, t1, t2, t3; in AES_encrypt() local
904 s3 = GETU32(in + 12) ^ rk[3]; in AES_encrypt()
907 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4]; in AES_encrypt()
908 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5]; in AES_encrypt()
909 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6]; in AES_encrypt()
910 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7]; in AES_encrypt()
915 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11]; in AES_encrypt()
917 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12]; in AES_encrypt()
918 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13]; in AES_encrypt()
919 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14]; in AES_encrypt()
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/aes/
Daes_core.c785 u32 s0, s1, s2, s3, t0, t1, t2, t3; in AES_encrypt() local
800 s3 = GETU32(in + 12) ^ rk[3]; in AES_encrypt()
803 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4]; in AES_encrypt()
804 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5]; in AES_encrypt()
805 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6]; in AES_encrypt()
806 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7]; in AES_encrypt()
811 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11]; in AES_encrypt()
813 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12]; in AES_encrypt()
814 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13]; in AES_encrypt()
815 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14]; in AES_encrypt()
[all …]
/external/openssl/crypto/aes/
Daes_core.c785 u32 s0, s1, s2, s3, t0, t1, t2, t3; in AES_encrypt() local
800 s3 = GETU32(in + 12) ^ rk[3]; in AES_encrypt()
803 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4]; in AES_encrypt()
804 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5]; in AES_encrypt()
805 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6]; in AES_encrypt()
806 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7]; in AES_encrypt()
811 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11]; in AES_encrypt()
813 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12]; in AES_encrypt()
814 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13]; in AES_encrypt()
815 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14]; in AES_encrypt()
[all …]
/external/chromium_org/third_party/openssl/openssl/patches/
Dtls1_change_cipher_state_rewrite.patch78 + const EVP_CIPHER *cipher = s->s3->tmp.new_sym_enc;
79 + const char is_export = SSL_C_IS_EXPORT(s->s3->tmp.new_cipher) != 0;
87 - is_export=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
88 - c=s->s3->tmp.new_sym_enc;
89 - m=s->s3->tmp.new_hash;
90 - mac_type = s->s3->tmp.new_mac_pkey_type;
92 - comp=s->s3->tmp.new_compression;
102 - s->s3->tmp.new_cipher->algorithm_mkey,
103 - s->s3->tmp.new_cipher->algorithm_auth,
108 - printf("\tkey_block: len= %d, data= ", s->s3->tmp.key_block_length);
[all …]
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
Dstringutil.cc229 const StringHolder& s3) { in StrCat() argument
231 result.reserve(s1.Length() + s2.Length() + s3.Length() + 1); in StrCat()
235 result += s3; in StrCat()
241 const StringHolder& s3, const StringHolder& s4) { in StrCat() argument
243 result.reserve(s1.Length() + s2.Length() + s3.Length() + s4.Length() + 1); in StrCat()
247 result += s3; in StrCat()
254 const StringHolder& s3, const StringHolder& s4, in StrCat() argument
257 result.reserve(s1.Length() + s2.Length() + s3.Length() + s4.Length() + in StrCat()
261 result += s3; in StrCat()
269 const StringHolder& s3, const StringHolder& s4, in StrCat() argument
[all …]

12345678910>>...19