forked from jamesruan/sodium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.go
33 lines (29 loc) · 904 Bytes
/
support.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package sodium
import "fmt"
//
// Internal support functions
//
// CheckTypedSize verifies the expected size of a Typed byte array.
func checkTypedSize(typed Typed, descrip string) {
switch typed.(type) {
case *GenericHashKey:
got := typed.Length()
min, max := cryptoGenericHashBytesMin, cryptoGenericHashBytesMax
checkSizeInRange(got, min, max, descrip)
case *SubKey:
got := typed.Length()
min, max := CryptoKDFBytesMin, CryptoKDFBytesMax
checkSizeInRange(got, min, max, descrip)
default:
expected := typed.Size()
got := typed.Length()
if got != expected {
panic(fmt.Sprintf("Incorrect %s buffer size, expected (%d), got (%d).\n", descrip, expected, got))
}
}
}
func checkSizeInRange(size int, min int, max int, descrip string) {
if size < min || size > max {
panic(fmt.Sprintf("Incorrect %s buffer size, expected (%d - %d), got (%d).", descrip, min, max, size))
}
}