Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15416329
D17622.id42374.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
607 B
Referenced Files
None
Subscribers
None
D17622.id42374.diff
View Options
diff --git a/src/upload/ArcanistFileDataRef.php b/src/upload/ArcanistFileDataRef.php
--- a/src/upload/ArcanistFileDataRef.php
+++ b/src/upload/ArcanistFileDataRef.php
@@ -346,11 +346,23 @@
}
private function newFileHash($path) {
- return null;
+ $hash = hash_file('sha256', $path, $raw_output = false);
+
+ if ($hash === false) {
+ return null;
+ }
+
+ return $hash;
}
private function newDataHash($data) {
- return null;
+ $hash = hash('sha256', $data, $raw_output = false);
+
+ if ($hash === false) {
+ return null;
+ }
+
+ return $hash;
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 21, 10:33 AM (2 w, 22 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7715357
Default Alt Text
D17622.id42374.diff (607 B)
Attached To
Mode
D17622: Upgrade "arc upload" to use SHA256
Attached
Detach File
Event Timeline
Log In to Comment