We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17c2532 commit 14d81f5Copy full SHA for 14d81f5
xts/xts.go
@@ -30,8 +30,8 @@ import (
30
"golang.org/x/crypto/internal/subtle"
31
)
32
33
-// Cipher contains an expanded key structure. It doesn't contain mutable state
34
-// and therefore can be used concurrently.
+// Cipher contains an expanded key structure. It is safe for concurrent use if
+// the underlying block cipher is safe for concurrent use.
35
type Cipher struct {
36
k1, k2 cipher.Block
37
}
0 commit comments