重命名加密模块相关代码

This commit is contained in:
max
2024-03-04 14:31:55 +08:00
parent 9bc58277aa
commit 7b4bb010bf
16 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
apply from : "../lib_standard.gradle"
android {
namespace 'com.example.lib_encrypt'
namespace 'com.example.lib_encipher'
sourceSets{
main{

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,11 +1,11 @@
package com.example.lib_encrypt
package com.secure.encipher
import java.util.regex.Pattern
object EncryptLib {
object EncipherLib {
init {
System.loadLibrary("encrypt")
System.loadLibrary("encipher")
}
fun encryptText(enc: String, key: String): String {