Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107123898
PhutilHashingIterator.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Apr 4, 23:21
Size
757 B
Mime Type
text/x-php
Expires
Sun, Apr 6, 23:21 (2 d)
Engine
blob
Format
Raw Data
Handle
25354934
Attached To
rPHU libphutil
PhutilHashingIterator.php
View Options
<?php
final
class
PhutilHashingIterator
extends
PhutilProxyIterator
implements
Iterator
{
private
$hash
;
private
$algorithm
;
public
function
setAlgorithm
(
$algorithm
)
{
$this
->
algorithm
=
$algorithm
;
return
$this
;
}
public
function
getAlgorithm
()
{
return
$this
->
algorithm
;
}
public
function
getHash
()
{
$hash
=
$this
->
getHashResource
();
return
hash_final
(
$hash
,
$raw_output
=
false
);
}
protected
function
didReadValue
(
$value
)
{
$hash
=
$this
->
getHashResource
();
hash_update
(
$hash
,
$value
);
return
$value
;
}
private
function
getHashResource
()
{
if
(!
$this
->
hash
)
{
$algorithm
=
$this
->
getAlgorithm
();
$this
->
hash
=
hash_init
(
$algorithm
);
}
return
$this
->
hash
;
}
}
Event Timeline
Log In to Comment