Page MenuHomePhabricator

D17622.id42385.diff
No OneTemporary

D17622.id42385.diff

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

Mime Type
text/plain
Expires
Sun, Apr 6, 4:57 AM (12 h, 53 m ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7715357
Default Alt Text
D17622.id42385.diff (607 B)

Event Timeline