Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F950585
20140218.passwords.4.vcs.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
728 B
Referenced Files
None
Subscribers
None
20140218.passwords.4.vcs.php
View Options
<?php
$table
=
new
PhabricatorRepositoryVCSPassword
();
$conn_w
=
$table
->
establishConnection
(
'w'
);
echo
pht
(
'Upgrading password hashing for VCS passwords.'
).
"
\n
"
;
$best_hasher
=
PhabricatorPasswordHasher
::
getBestHasher
();
foreach
(
new
LiskMigrationIterator
(
$table
)
as
$password
)
{
$id
=
$password
->
getID
();
echo
pht
(
'Migrating VCS password %d...'
,
$id
).
"
\n
"
;
$input_hash
=
$password
->
getPasswordHash
();
$input_envelope
=
new
PhutilOpaqueEnvelope
(
$input_hash
);
$storage_hash
=
$best_hasher
->
getPasswordHashForStorage
(
$input_envelope
);
queryfx
(
$conn_w
,
'UPDATE %T SET passwordHash = %s WHERE id = %d'
,
$table
->
getTableName
(),
$storage_hash
->
openEnvelope
(),
$id
);
}
echo
pht
(
'Done.'
).
"
\n
"
;
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 2:10 PM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
224239
Default Alt Text
20140218.passwords.4.vcs.php (728 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment