Skip to content

Commit 10555e1

Browse files
committed
format
1 parent 155a74c commit 10555e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DynamoDbEncryption/dafny/DynamoDbEncryption/src/SearchInfo.dfy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ module SearchableEncryptionInfo {
139139
.MapFailure(e => Error.DynamoDbEncryptionException(message := e));
140140

141141
output := UUID.ToByteArray(uuid)
142-
.MapFailure(e => Error.DynamoDbEncryptionException(message := e));
142+
.MapFailure(e => Error.DynamoDbEncryptionException(message := e));
143143
}
144144

145145
datatype KeyLocation =
@@ -341,7 +341,7 @@ module SearchableEncryptionInfo {
341341
var identifierDigestInput := Prim.DigestInput(
342342
digestAlgorithm := hashAlgorithm, message := identifier
343343
);
344-
var maybeCacheDigest := client.Digest(identifierDigestInput);
344+
var maybeCacheDigest := client.Digest(identifierDigestInput);
345345
var cacheDigest :- maybeCacheDigest.MapFailure(e => AwsCryptographyPrimitives(e));
346346

347347
// Use the SHA384 of the identifier as the cache identifier

0 commit comments

Comments
 (0)