Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/passphrase/storage/PassphraseSecret.php
12256 views
1
<?php
2
3
final class PassphraseSecret extends PassphraseDAO {
4
5
protected $secretData;
6
7
protected function getConfiguration() {
8
return array(
9
self::CONFIG_TIMESTAMPS => false,
10
self::CONFIG_BINARY => array(
11
'secretData' => true,
12
),
13
) + parent::getConfiguration();
14
}
15
16
}
17
18