Skip to content

Commit 7f29b6b

Browse files
committed
I don't think bare paths for file-based certs are really 'deprecated'
1 parent 9b0fa14 commit 7f29b6b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

config/config.php.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ $config = [
8686
* 'certdir' parameter below. When 'certdir' is specified as a relative
8787
* path, it will be interpreted as relative to the SimpleSAMLphp root
8888
* directory. Note that locations with no prefix included will be treated
89-
* as file locations for backwards compatibility.
89+
* as file locations.
9090
*/
9191
'certdir' => 'cert/',
9292

src/SimpleSAML/Utils/Crypto.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ private function retrieveCertOrKey(string $data_type, string $location, bool $fu
429429

430430
return(null);
431431
} elseif (strncmp($location, 'file://', 7) === 0) {
432-
# For backwards compatibility, locations without a prefix are assumed to be file locations.
432+
# Locations without a prefix are assumed to be file locations.
433433
# So just remove prefix and fall through
434434

435435
$location = substr($location, 7);

0 commit comments

Comments
 (0)