-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAwsKmsApi.test.scala
90 lines (71 loc) · 1.99 KB
/
AwsKmsApi.test.scala
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package org.encalmo.aws
import java.nio.charset.StandardCharsets
import java.util.Base64
class AwsKmsApiSpec extends TestSuite {
val testSigningKeyArn =
"arn:aws:kms:eu-central-1:047719648492:alias/test-signing"
val testEncryptionKeyArn =
"arn:aws:kms:eu-central-1:047719648492:alias/test-encryption"
test("sign and verify array of bytes") {
given awsClient: AwsClient =
AwsClient.initializeWithProperties(
localAwsSecurityCredentials ++ debugModeProperties
)
val signature: Array[Byte] = AwsKmsApi
.signRawMessage(
testSigningKeyArn,
"RSASSA_PKCS1_V1_5_SHA_256",
"Hello World!".getBytes()
)
assert(
AwsKmsApi
.verifyRawMessage(
testSigningKeyArn,
"RSASSA_PKCS1_V1_5_SHA_256",
"Hello World!".getBytes(),
signature
)
)
}
test("sign and verify string message") {
given awsClient: AwsClient =
AwsClient.initializeWithProperties(
localAwsSecurityCredentials ++ debugModeProperties
)
val signature: String = AwsKmsApi
.signRawMessage(
testSigningKeyArn,
"RSASSA_PKCS1_V1_5_SHA_256",
"Hello World!"
)
assert(
AwsKmsApi
.verifyRawMessage(
testSigningKeyArn,
"RSASSA_PKCS1_V1_5_SHA_256",
"Hello World!",
signature
)
)
}
test("encrypt and decrypt array of bytes") {
given awsClient: AwsClient =
AwsClient.initializeWithProperties(
localAwsSecurityCredentials ++ debugModeProperties
)
val message: Array[Byte] = "Hello World!".getBytes()
val ciphertextBlob: Array[Byte] = AwsKmsApi
.encryptMessage(
testEncryptionKeyArn,
"RSAES_OAEP_SHA_256",
message
)
val decryptedMessage: Array[Byte] = AwsKmsApi
.decryptMessage(
testEncryptionKeyArn,
"RSAES_OAEP_SHA_256",
ciphertextBlob
)
assert(message.sameElements(decryptedMessage))
}
}