1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-04-03 14:20:10 +08:00
This commit is contained in:
StageGuard 2023-05-06 09:22:43 +08:00
parent 209dfac519
commit 632e654191
No known key found for this signature in database
GPG Key ID: F6FF8760A883492B
2 changed files with 2 additions and 2 deletions
mirai-core/src/commonTest/kotlin/utils/crypto

View File

@ -18,7 +18,7 @@ import kotlin.test.assertEquals
internal class AESTest {
@Test
fun `can aes crypto works`() {
fun `can do crypto`() {
val random = Random(currentTimeMillis())
repeat(5) { i ->
val key = getRandomString(16, random).encodeToByteArray()

View File

@ -18,7 +18,7 @@ import kotlin.test.assertEquals
@DisabledOnJvmLikePlatform(Platform.AndroidUnitTest::class)
class RSATest {
@Test
fun `can gen rsa key pair`() {
fun `can generate key pair`() {
repeat(4) { exp ->
val keySize = 2.0.pow(9 + exp).toInt()
val rsaKeyPair = generateRSAKeyPair(keySize)