Browse Source

default `encodeBase64`/`decodeBase64` mode to `NO_WRAP` on Android (#2753)

赵怡然 2 years ago
parent
commit
d1295c4e39
1 changed files with 2 additions and 2 deletions
  1. 2 2
      mirai-core-utils/src/androidMain/kotlin/Actuals.kt

+ 2 - 2
mirai-core-utils/src/androidMain/kotlin/Actuals.kt

@@ -17,11 +17,11 @@ import androidx.annotation.RequiresApi
 
 
 public actual fun ByteArray.encodeBase64(): String {
-    return Base64.encodeToString(this, Base64.DEFAULT)
+    return Base64.encodeToString(this, Base64.NO_WRAP)
 }
 
 public actual fun String.decodeBase64(): ByteArray {
-    return Base64.decode(this, Base64.DEFAULT)
+    return Base64.decode(this, Base64.NO_WRAP)
 }
 
 @RequiresApi(Build.VERSION_CODES.N)