From: Marton Balint <cus@passwd.hu> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: fall back to av_get_random_seed() when generating AES128 key Date: Mon, 3 Jul 2023 21:23:25 +0200 (CEST) Message-ID: <c8b4b0b3-9643-f092-8eb0-ffca175c13e0@passwd.hu> (raw) In-Reply-To: <CADxeRwn=81fr8HvhYBhvCa3AwwZZdX-L+ZD3NwoLgwxKPzP7NA@mail.gmail.com> On Mon, 3 Jul 2023, Steven Liu wrote: > Marton Balint <cus@passwd.hu> 于2023年7月3日周一 03:30写道: >> >> It should be OK to use av_get_random_seed() to generate the key instead of >> using openSSL/Gcrypt functions. This removes the hard dependancy of those libs >> for key generation functionality. >> >> Fixes ticket #10441. >> >> Signed-off-by: Marton Balint <cus@passwd.hu> >> --- [...] >> static int do_encrypt(AVFormatContext *s, VariantStream *vs) >> @@ -775,10 +776,7 @@ static int do_encrypt(AVFormatContext *s, VariantStream *vs) >> if (!*hls->key_string) { >> AVDictionary *options = NULL; >> if (!hls->key) { >> - if ((ret = randomize(key, sizeof(key))) < 0) { >> - av_log(s, AV_LOG_ERROR, "Cannot generate a strong random key\n"); >> - return ret; >> - } >> + randomize(key, sizeof(key)); >> } else { >> memcpy(key, hls->key, sizeof(key)); >> } > Hi Marton, > > Should remove braces too. I cannot sure how to make it more simpler as > !hls->key ? randomize(key, sizeof(key)) : memcpy(key, hls->key, > sizeof(key)); ? I will just remove the braces, looks more readable to me than using the ternary operator. Will apply the series, thanks. Marton _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2023-07-03 19:26 UTC|newest] Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-07-02 19:30 Marton Balint 2023-07-02 19:30 ` [FFmpeg-devel] [PATCH 2/2] avformat/hlsenc: remove openssl/gcrypt random key generation Marton Balint 2023-07-03 2:21 ` Steven Liu 2023-07-03 2:20 ` [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: fall back to av_get_random_seed() when generating AES128 key Steven Liu 2023-07-03 19:23 ` Marton Balint [this message] 2023-07-03 19:33 ` James Almer 2023-07-03 20:15 ` Anton Khirnov 2023-07-03 20:54 ` Marton Balint 2023-07-03 21:09 ` Anton Khirnov 2023-07-03 21:52 ` Marton Balint 2023-07-04 19:02 ` James Almer 2023-07-04 19:30 ` Marton Balint 2023-07-06 17:01 ` [FFmpeg-devel] [PATCH] avformat/hlsenc: use av_random_bytes() for " Marton Balint 2023-07-14 19:39 ` Marton Balint 2023-07-03 23:50 ` [FFmpeg-devel] [PATCH 1/2] avformat/hlsenc: fall back to av_get_random_seed() when " Michael Niedermayer 2023-07-04 5:54 ` Anton Khirnov 2023-07-04 9:08 ` Kieran Kunhya 2023-07-04 14:37 ` James Almer 2023-07-04 15:31 ` Anton Khirnov 2023-07-04 23:50 ` Michael Niedermayer 2023-07-05 9:22 ` Anton Khirnov 2023-07-05 22:54 ` Michael Niedermayer 2023-07-06 7:52 ` Anton Khirnov 2023-07-06 23:34 ` Kieran Kunhya 2023-07-07 0:55 ` Michael Niedermayer 2023-07-07 8:05 ` Anton Khirnov 2023-07-07 14:42 ` Michael Niedermayer 2023-07-03 20:20 ` Marton Balint
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=c8b4b0b3-9643-f092-8eb0-ffca175c13e0@passwd.hu \ --to=cus@passwd.hu \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git