Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cda1fdf

Browse files
committedDec 4, 2024·
fix
1 parent c226970 commit cda1fdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎DynamoDbEncryption/dafny/DynamoDbEncryption/src/SearchInfo.dfy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ module SearchableEncryptionInfo {
272272
// Append Resource Id, Scope Id, Partition Id, and Suffix to create the cache identifier
273273
var identifier := resourceId + NULL_BYTE + scopeId + NULL_BYTE + partitionIdBytes + NULL_BYTE + suffix;
274274

275-
var getCacheInput := MP.GetCacheEntryInput(identifier := keyIdBytes, bytesUsed := None);
275+
var getCacheInput := MP.GetCacheEntryInput(identifier := identifier, bytesUsed := None);
276276
verifyValidStateCache(cache);
277277
assume {:axiom} cache.Modifies == {};
278278
var getCacheOutput := cache.GetCacheEntry(getCacheInput);

0 commit comments

Comments
 (0)
Please sign in to comment.