You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: simbot-component-qq-guild-internal-ed25519/src/commonMain/kotlin/love/forte/simbot/qguild/ed25519/Ed25519s.kt
+5
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,11 @@ public expect fun ed25519KeyPairGenerator(): Ed25519KeyPairGenerator
Copy file name to clipboardExpand all lines: simbot-component-qq-guild-internal-ed25519/src/jvmMain/kotlin/love/forte/simbot/qguild/ed25519/Ed25519s.jvm.kt
+1-3
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ public actual fun ed25519KeyPairGenerator(): Ed25519KeyPairGenerator {
40
40
returnif (bouncyCastleAccessible) {
41
41
BouncyCastleEd25519KeyPairGenerator
42
42
} else {
43
-
TODO()
43
+
EddsaEd25519KeyPairGenerator
44
44
}
45
45
}
46
46
@@ -65,13 +65,11 @@ private val bouncyCastleAccessible: Boolean by lazy {
65
65
}
66
66
}.also {
67
67
if (!it) {
68
-
// TODO log debug
69
68
val msg ="BouncyCastle is inaccessible because of the classes {} are not found in classpath. "+
Copy file name to clipboardExpand all lines: simbot-component-qq-guild-stdlib/src/commonMain/kotlin/love/forte/simbot/qguild/stdlib/internal/BotImpl.kt
0 commit comments