Lines Matching refs:hash
110 char* swfhash; ///< SHA256 hash of the decompressed SWF file (32 bytes)
111 int swfhash_len; ///< length of the SHA256 hash
114 char* swfverify; ///< URL to player swf file, compute hash/size automatically
115 char swfverification[42]; ///< hash of the SWF verification
1177 /* Compute the SHA256 hash of the SWF player file. */
1284 /* Generate SWFVerification token (SHA256 HMAC hash of decompressed SWF,
1610 uint8_t hash[16];
1611 char hashstr[AV_BASE64_SIZE(sizeof(hash))], challenge2[10];
1622 av_md5_final(md5, hash);
1623 av_base64_encode(hashstr, sizeof(hashstr), hash,
1624 sizeof(hash));
1632 av_md5_final(md5, hash);
1633 av_base64_encode(hashstr, sizeof(hashstr), hash,
1634 sizeof(hash));
1648 uint8_t hash[16];
1667 av_md5_final(md5, hash);
1668 ff_data_to_hex(hashstr1, hash, 16, 1);
1676 av_md5_final(md5, hash);
1677 ff_data_to_hex(hashstr2, hash, 16, 1);
1692 av_md5_final(md5, hash);
1693 ff_data_to_hex(hashstr1, hash, 16, 1);
2567 // mixed array (hash) with size and string/type/data tuples
3114 {"rtmp_swfhash", "SHA256 hash of the decompressed SWF file (32 bytes).", OFFSET(swfhash), AV_OPT_TYPE_BINARY, .flags = DEC},
3117 {"rtmp_swfverify", "URL to player swf file, compute hash/size automatically.", OFFSET(swfverify), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC},