Home
last modified time | relevance | path

Searched refs:md5 (Results 1 – 25 of 55) sorted by relevance

123

/expo/apps/test-suite/tests/
H A DSMSCommon.js16 const { md5, headers } = await FS.downloadAsync(fileInfo.remoteUri, fileInfo.localUri, {
17 md5: true, property
19 expect(md5).toBe(fileInfo.md5);
32 md5: '1e02045c10b8f1145edc7c8375998f87', property
39 md5: '090592ebd01ac1e425b2766989040f80', property
46 md5: 'e21d733c3506280974842f11c6d30005', property
H A DAsset.js55 md5,
59 md5: true, property
63 more['hash'] && t.expect(md5).toBe(asset.hash);
H A DFileSystem.js65 const { md5, headers } = await FS.downloadAsync(
68 { md5: true } property
70 expect(md5).toBe('1e02045c10b8f1145edc7c8375998f87');
121 const { md5 } = await FS.downloadAsync(
124 { md5: true } property
126 expect(md5).toBe('86d73d2f11e507365f7ea8e7ec3cc4cb');
379 const { md5 } = await FS.downloadAsync(
382 { md5: true } property
384 expect(md5).toBe('1e02045c10b8f1145edc7c8375998f87');
426 md5: true, property
[all …]
/expo/packages/expo-asset/src/
H A DPlatformUtils.ts63 md5: true,
65 if (!fileInfo.exists || (hash !== null && fileInfo.md5 !== hash)) {
66 const { md5 } = await FileSystem.downloadAsync(uri, localUri, { constant
67 md5: true,
69 if (hash !== null && md5 !== hash) {
/expo/packages/expo-asset/build/
H A DPlatformUtils.js49 md5: true, property
51 if (!fileInfo.exists || (hash !== null && fileInfo.md5 !== hash)) {
52 const { md5 } = await FileSystem.downloadAsync(uri, localUri, {
53 md5: true, property
55 if (hash !== null && md5 !== hash) {
/expo/packages/expo-file-system/ios/
H A DNSData+EXFileSystem.m12 NSMutableString *md5 = [NSMutableString stringWithCapacity:2 * CC_MD5_DIGEST_LENGTH];
14 [md5 appendFormat:@"%02x", digest[i]];
16 return md5;
H A DFileSystemRecords.swift6 @Field var md5: Bool = false variable
42 @Field var md5: Bool = false variable
/expo/ios/versioned/sdk47/EXFileSystem/EXFileSystem/
H A DNSData+ABI47_0_0EXFileSystem.m12 NSMutableString *md5 = [NSMutableString stringWithCapacity:2 * CC_MD5_DIGEST_LENGTH];
14 [md5 appendFormat:@"%02x", digest[i]];
16 return md5;
H A DABI47_0_0EXFileSystemLocalFileHandler.m19 if (options[@"md5"]) {
20 result[@"md5"] = [[NSData dataWithContentsOfFile:path] md5String];
/expo/ios/versioned/sdk48/EXFileSystem/EXFileSystem/
H A DNSData+ABI48_0_0EXFileSystem.m12 NSMutableString *md5 = [NSMutableString stringWithCapacity:2 * CC_MD5_DIGEST_LENGTH];
14 [md5 appendFormat:@"%02x", digest[i]];
16 return md5;
H A DABI48_0_0EXFileSystemLocalFileHandler.m19 if (options[@"md5"]) {
20 result[@"md5"] = [[NSData dataWithContentsOfFile:path] md5String];
/expo/ios/versioned/sdk49/EXFileSystem/EXFileSystem/
H A DNSData+ABI49_0_0EXFileSystem.m12 NSMutableString *md5 = [NSMutableString stringWithCapacity:2 * CC_MD5_DIGEST_LENGTH];
14 [md5 appendFormat:@"%02x", digest[i]];
16 return md5;
/expo/packages/expo-crypto/ios/
H A DDigestAlgorithm.swift15 case md5 = "MD5"
28 case .md5:
49 case .md5:
/expo/ios/versioned/sdk48/ExpoCrypto/
H A DDigestAlgorithm.swift15 case md5 = "MD5"
28 case .md5:
49 case .md5:
/expo/ios/versioned/sdk49/ExpoCrypto/
H A DDigestAlgorithm.swift15 case md5 = "MD5"
28 case .md5:
49 case .md5:
/expo/ios/versioned/sdk47/ExpoCrypto/
H A DDigestAlgorithm.swift15 case md5 = "MD5"
28 case .md5:
49 case .md5:
/expo/packages/expo-file-system/build/
H A DFileSystem.types.d.ts34 md5?: boolean;
67 md5?: string;
201 md5?: string;
259 md5?: boolean;
/expo/packages/expo-file-system/src/
H A DFileSystem.types.ts36 md5?: boolean;
73 md5?: string;
222 md5?: string;
288 md5?: boolean;
/expo/tools/src/commands/
H A DPodInstallCommand.ts23 const podfileLockHash = await md5(path.join(absoluteProjectPath, 'Podfile.lock'));
24 const manifestLockHash = await md5(path.join(absoluteProjectPath, 'Pods/Manifest.lock'));
45 async function md5(path: string): Promise<string | null> { function
/expo/scripts/
H A Dcheck-cocoapods-lockfiles.sh19 podfileLock=$(md5 -q "$podfileLockPath" 2>/dev/null)
20 manifestLock=$(md5 -q $manifestLockPath 2>/dev/null)
/expo/packages/expo-asset/src/__tests__/
H A DAsset-test.ts135 FileSystem.downloadAsync.mockReturnValueOnce({ md5: mockImageMetadata.hash });
156 FileSystem.downloadAsync.mockReturnValueOnce({ md5: 'deadf00ddeadf00ddeadf00ddeadf00d' });
182 md5: mockImageMetadata.hash,
196 FileSystem.downloadAsync.mockReturnValue({ md5: mockImageMetadata.hash });
/expo/packages/expo-file-system/android/src/main/java/expo/modules/filesystem/
H A DFileSystemRecords.kt9 val md5: Boolean?, constant in expo.modules.filesystem.InfoOptions
57 val md5: Boolean = false, constant in expo.modules.filesystem.DownloadOptions
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/filesystem/
H A DFileSystemRecords.kt9 val md5: Boolean?, constant in abi49_0_0.expo.modules.filesystem.InfoOptions
57 val md5: Boolean = false, constant in abi49_0_0.expo.modules.filesystem.DownloadOptions
/expo/packages/expo-updates/ios/EXUpdates/ASN1Decoder/
H A DOID.swift33 case md5 = "0.2.262.1.10.1.3.2"
/expo/packages/@expo/cli/src/api/rest/cache/
H A DwrapFetchWithCache.ts62 function md5(str: string) { function
146 return md5(JSON.stringify([resourceCacheKeyJson, initCacheKeyJson, CACHE_VERSION]));

123