의존성추가 implementation("androidx.security:security-crypto:1.0.0") // 사용 방법 val masterKeyAlias = MasterKey .Builder(applicationContext, MasterKey.DEFAULT_MASTER_KEY_ALIAS) .setKeyScheme(MasterKey.KeyScheme.AES256_GCM) .build() val sharedPref = EncryptedSharePreferences.create( context, // Context, "encrypted_pref_name", // 파일명 masterKeyAlias, EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES25..