/third_party/ffmpeg/libavformat/ |
H A D | librist.c | 50 int encryption; member 75 { "secret", "set encryption secret",OFFSET(secret), AV_OPT_TYPE_STRING,{.str=NULL}, 0, 0, .flags = D|E }, 76 { "encryption","set encryption type",OFFSET(encryption), AV_OPT_TYPE_INT ,{.i64=0}, 0, INT_MAX, .flags = D|E }, 166 if (((s->encryption == 128 || s->encryption == 256) && !s->secret) || in librist_open() 168 av_log(h, AV_LOG_ERROR, "secret is mandatory if encryption is enabled\n"); in librist_open() 176 if (s->secret && (s->encryption == 128 || s->encryption in librist_open() [all...] |
H A D | matroskadec.c | 163 MatroskaTrackEncryption encryption; member 558 { MATROSKA_ID_ENCODINGENCRYPTION, EBML_NEST, 0, 0, offsetof(MatroskaTrackEncoding, encryption), { .n = matroska_track_encoding_encryption } }, 2510 if (encodings[0].encryption.key_id.size > 0) { in matroska_parse_tracks() 2511 /* Save the encryption key id to be stored later as a in matroska_parse_tracks() 2513 const int b64_size = AV_BASE64_SIZE(encodings[0].encryption.key_id.size); in matroska_parse_tracks() 2519 encodings[0].encryption.key_id.data, in matroska_parse_tracks() 2520 encodings[0].encryption.key_id.size); in matroska_parse_tracks() 2588 /* export encryption key id as base64 metadata tag */ in matroska_parse_tracks()
|
/third_party/pulseaudio/src/modules/raop/ |
H A D | raop-sink.c | 92 pa_raop_encryption_t encryption; member 736 const char *server, *protocol, *encryption, *codec; in pa_raop_sink_new() local 821 encryption = pa_modargs_get_value(ma, "encryption", NULL); in pa_raop_sink_new() 824 if (!encryption) { in pa_raop_sink_new() 825 u->encryption = PA_RAOP_ENCRYPTION_NONE; in pa_raop_sink_new() 826 } else if (pa_streq(encryption, "none")) { in pa_raop_sink_new() 827 u->encryption = PA_RAOP_ENCRYPTION_NONE; in pa_raop_sink_new() 828 } else if (pa_streq(encryption, "RSA")) { in pa_raop_sink_new() 829 u->encryption in pa_raop_sink_new() [all...] |
H A D | raop-client.h | 60 pa_raop_encryption_t encryption, pa_raop_codec_t codec, bool autoreconnect);
|
H A D | raop-client.c | 105 pa_raop_encryption_t encryption; member 352 if (c->encryption == PA_RAOP_ENCRYPTION_RSA) in build_tcp_audio_packet() 444 if (c->encryption == PA_RAOP_ENCRYPTION_RSA) in build_udp_audio_packet() 904 switch(c->encryption) { in rtsp_stream_cb() 1438 pa_raop_encryption_t encryption, pa_raop_codec_t codec, bool autoreconnect) { in pa_raop_client_new() 1469 c->encryption = encryption; in pa_raop_client_new() 1479 if (c->encryption != PA_RAOP_ENCRYPTION_NONE) in pa_raop_client_new() 1437 pa_raop_client_new(pa_core *core, const char *host, pa_raop_protocol_t protocol, pa_raop_encryption_t encryption, pa_raop_codec_t codec, bool autoreconnect) pa_raop_client_new() argument
|
/third_party/node/test/parallel/ |
H A D | test-crypto-cipheriv-decipheriv.js | 10 // Test encryption and decryption with explicit key and iv 24 `encryption/decryption with key ${key} and iv ${iv}`); 44 // Test encryption and decryption with explicit key and iv 58 `encryption/decryption with key ${key} and iv ${iv}`); 63 // Test encryption and decryption with explicit key and iv. 78 `encryption/decryption with key ${key} and iv ${iv}`);
|
H A D | test-crypto-keygen.js | 741 message: `The selected key encoding ${type} does not support encryption.`
|
/third_party/ffmpeg/tests/fate/ |
H A D | libavutil.mak | 77 FATE_LIBAVUTIL += fate-encryption-info 78 fate-encryption-info: libavutil/tests/encryption_info$(EXESUF) 79 fate-encryption-info: CMD = run libavutil/tests/encryption_info$(EXESUF) 80 fate-encryption-info: CMP = null
|
H A D | mov.mak | 50 # Edit list with encryption 53 # Fragmented encryption with senc boxes in movie fragments. 56 # Full-sample encryption and constant IV using only tenc atom (no senc/saio/saiz).
|
/third_party/cups-filters/cupsfilters/ |
H A D | ipp.c | 215 http_encryption_t encryption; in get_printer_attributes5() local 296 encryption = HTTP_ENCRYPTION_ALWAYS; in get_printer_attributes5() 298 encryption = HTTP_ENCRYPTION_IF_REQUESTED; in get_printer_attributes5() 305 encryption, 1, 3000, NULL)) == NULL) { in get_printer_attributes5()
|
H A D | ppdgenerator.c | 376 http_encryption_t encryption; /* Type of encryption to use */ in get_url() local 387 encryption = HTTP_ENCRYPTION_ALWAYS; in get_url() 389 encryption = HTTP_ENCRYPTION_IF_REQUESTED; in get_url() 391 http = httpConnect2(host, port, NULL, AF_UNSPEC, encryption, 1, 5000, NULL); in get_url()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | p5_crpt2.c | 139 * lets see if we recognise the encryption algorithm. in PKCS5_v2_PBE_keyivgen_ex() 141 if (OBJ_obj2txt(ciph_name, sizeof(ciph_name), pbe2->encryption->algorithm, 0) <= 0) { in PKCS5_v2_PBE_keyivgen_ex() 162 if (EVP_CIPHER_asn1_to_param(ctx, pbe2->encryption->parameter) <= 0) { in PKCS5_v2_PBE_keyivgen_ex()
|
/third_party/openssl/crypto/evp/ |
H A D | p5_crpt2.c | 139 * lets see if we recognise the encryption algorithm. in PKCS5_v2_PBE_keyivgen_ex() 141 if (OBJ_obj2txt(ciph_name, sizeof(ciph_name), pbe2->encryption->algorithm, 0) <= 0) { in PKCS5_v2_PBE_keyivgen_ex() 162 if (EVP_CIPHER_asn1_to_param(ctx, pbe2->encryption->parameter) <= 0) { in PKCS5_v2_PBE_keyivgen_ex()
|
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A D | p5_scrypt.c | 21 /* PKCS#5 scrypt password based encryption structures */ 73 /* Setup the AlgorithmIdentifier for the encryption scheme */ in PKCS5_pbe2_set_scrypt() 74 scheme = pbe2->encryption; in PKCS5_pbe2_set_scrypt()
|
/third_party/openssl/crypto/asn1/ |
H A D | p5_scrypt.c | 21 /* PKCS#5 scrypt password based encryption structures */ 73 /* Setup the AlgorithmIdentifier for the encryption scheme */ in PKCS5_pbe2_set_scrypt() 74 scheme = pbe2->encryption; in PKCS5_pbe2_set_scrypt()
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | pkcs12.c | 84 {"twopass", OPT_TWOPASS, '-', "Separate MAC, encryption passwords"}, 91 "Use legacy encryption algorithm 3DES_CBC for keys and certs" 93 "Use legacy encryption: 3DES_CBC for keys, RC2_CBC for certs" 108 {"", OPT_CIPHER, '-', "Any supported cipher for output encryption"}, 147 {"iter", OPT_ITER, 'p', "Specify the iteration count for encryption and MAC"}, 148 {"noiter", OPT_NOITER, '-', "Don't use encryption iteration"}, 381 "Warning: output encryption option -%s ignored with -export\n", enc_flag); in pkcs12_main() 1054 X509_ALGOR_get0(&aoid, NULL, NULL, pbe2->encryption); in alg_print()
|
/third_party/openssl/apps/ |
H A D | pkcs12.c | 84 {"twopass", OPT_TWOPASS, '-', "Separate MAC, encryption passwords"}, 91 "Use legacy encryption algorithm 3DES_CBC for keys and certs" 93 "Use legacy encryption: 3DES_CBC for keys, RC2_CBC for certs" 108 {"", OPT_CIPHER, '-', "Any supported cipher for output encryption"}, 147 {"iter", OPT_ITER, 'p', "Specify the iteration count for encryption and MAC"}, 148 {"noiter", OPT_NOITER, '-', "Don't use encryption iteration"}, 381 "Warning: output encryption option -%s ignored with -export\n", enc_flag); in pkcs12_main() 1058 X509_ALGOR_get0(&aoid, NULL, NULL, pbe2->encryption); in alg_print()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | x509.h | 284 /* Password based encryption structure */ 291 /* Password based encryption V2 structures */ 295 X509_ALGOR *encryption; member
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/ |
H A D | x509.h | 443 /* Password based encryption structure */ 450 /* Password based encryption V2 structures */ 454 X509_ALGOR *encryption; member
|
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/ |
H A D | x509.h | 443 /* Password based encryption structure */ 450 /* Password based encryption V2 structures */ 454 X509_ALGOR *encryption; member
|
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/ |
H A D | x509.h | 443 /* Password based encryption structure */ 450 /* Password based encryption V2 structures */ 454 X509_ALGOR *encryption; member
|
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/ |
H A D | x509.h | 443 /* Password based encryption structure */ 450 /* Password based encryption V2 structures */ 454 X509_ALGOR *encryption; member
|
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/ |
H A D | x509.h | 443 /* Password based encryption structure */ 450 /* Password based encryption V2 structures */ 454 X509_ALGOR *encryption; member
|
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/ |
H A D | x509.h | 443 /* Password based encryption structure */ 450 /* Password based encryption V2 structures */ 454 X509_ALGOR *encryption; member
|
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/ |
H A D | x509.h | 443 /* Password based encryption structure */ 450 /* Password based encryption V2 structures */ 454 X509_ALGOR *encryption; member
|