This commit is contained in:
Andrew Nicols 2024-03-06 23:26:45 +08:00
commit 44e6d7d9e0
No known key found for this signature in database
GPG Key ID: 6D1E3157C8CFBF14

View File

@ -40,12 +40,12 @@ class config {
public const DEFAULT_DPA_URL = 'https://blindsidenetworks.com/dpa-moodle-free-tier';
/** @var string the default bigbluebutton checksum algorithm */
public const DEFAULT_CHECKSUM_ALGORITHM = 'SHA1';
public const DEFAULT_CHECKSUM_ALGORITHM = 'SHA256';
/** @var array list of supported bigbluebutton checksum algorithm */
const CHECKSUM_ALGORITHMS = [
self::DEFAULT_CHECKSUM_ALGORITHM,
'SHA256',
'SHA1',
'SHA512'
];