- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望用户从图库中选择图片/视频,并在我的应用中保护他们的图片。为此,我加密了这些图像。图像加密工作正常(我认为是这样!)。 8MB 图像需要 1.5 到 2 秒。但是视频呢?视频可能以 GB 为单位。所以会花很多时间。即使在加密/解密中,我也必须对每个图像执行操作,这可能会导致内存问题。 This链接帮助我实现了这一目标。
如你所见,ES 文件浏览器还提供了对图片/视频的加密和解密。并在几秒钟内完成 GB 的操作。那么我能知道这些人使用的是哪种技术/算法吗?
或者即使我使用自己的方式,有什么技巧可以让它更快吗?还是有其他方法可以使用户无法访问文件?更改 MIME 类型会起作用吗?
即使我更改扩展名或通过添加 .在文件名之前,用户仍然可以在某些文件资源管理器中查看图像。
实际上对于xamarin
,我没有找到任何与加密解密文件相关的帖子/博客。他们提供的只是字符串解决方案。
如果有人指导我解决这个问题,我将不胜感激。
编辑
您好,@Joe Lv,正如我所说,我尝试了您的加密速度较慢但解密速度非常快的方法。所以我实现了你用来加密东西的相同解密技术。它有效!但我想知道这是否有效。
现在我的加密方法是这样的:
public void encrypt(string filename)
{
// Here you read the cleartext.
try
{
File extStore = Environment.GetExternalStoragePublicDirectory(Environment.DirectoryMovies);
startTime = System.DateTime.Now.Millisecond;
Android.Util.Log.Error("Encryption Started", extStore + "/" + filename);
// This stream write the encrypted text. This stream will be wrapped by
// another stream.
// createFile(filename, extStore);
// System.IO.FileStream fs=System.IO.File.OpenRead(extStore + "/" + filename);
// FileOutputStream fos = new FileOutputStream(extStore + "/" + filename + ".aes", false);
FileInputStream fis = new FileInputStream(filepath);
FileOutputStream fos = new FileOutputStream(filepath, false);
System.IO.FileStream fs = System.IO.File.OpenWrite(filepath + filename);
// Create cipher
// Length is 16 byte
Cipher cipher = Cipher.GetInstance("AES/CBC/PKCS5Padding");
byte[] raw = System.Text.Encoding.Default.GetBytes(sKey);
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
IvParameterSpec iv = new IvParameterSpec(System.Text.Encoding.Default.GetBytes(ivParameter));//
cipher.Init(CipherMode.EncryptMode, skeySpec, iv);
// Wrap the output stream
// CipherInputStream cis = new CipherInputStream(fs, cipher);
CipherOutputStream cos = new CipherOutputStream(fs, cipher);
// Write bytes
int b;
byte[] d = new byte[512 * 1024];
while ((b = fis.Read(d)) != -1)
{
cos.Write(d, 0, b);
}
// Flush and close streams.
fos.Flush();
fos.Close();
cos.Close();
fis.Close();
stopTime = System.DateTime.Now.Millisecond;
Android.Util.Log.Error("Encryption Ended", extStore + "/5mbtest/" + filename + ".aes");
Android.Util.Log.Error("Time Elapsed", ((stopTime - startTime) / 1000.0) + "");
}
catch (Exception e)
{
Android.Util.Log.Error("lv",e.Message);
}
}
最佳答案
I didn't find any post/blog related to encrypting decrypting file
可以使用CipherOutputStream
和CipherInputStream
来实现。
这是我的测试演示,你可以试试,你需要将一个名为videoplayback.mp4
的视频文件推送到手机中,路径为/storage/sdcard/Movies
,所以你可以直接测试我的代码。
using Android.App;
using Android.Widget;
using Android.OS;
using Javax.Crypto.Spec;
using Java.Lang;
using Java.IO;
using Javax.Crypto;
using System.Text;
namespace EncryTest
{
[Activity(Label = "EncryTest", MainLauncher = true)]
public class MainActivity : Activity
{
long stopTime, startTime;
private string sKey = "0123456789abcdef";//key,
private string ivParameter = "1020304050607080";
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.Main);
encrypt("videoplayback.mp4");
decrypt("videoplayback.mp4");
}
public void encrypt(string filename)
{
// Here you read the cleartext.
try
{
File extStore = Environment.GetExternalStoragePublicDirectory(Environment.DirectoryMovies);
startTime = System.DateTime.Now.Millisecond;
Android.Util.Log.Error("Encryption Started", extStore + "/" + filename);
// This stream write the encrypted text. This stream will be wrapped by
// another stream.
createFile(filename, extStore);
System.IO.FileStream fs=System.IO.File.OpenRead(extStore + "/" + filename);
FileOutputStream fos = new FileOutputStream(extStore + "/" + filename + ".aes", false);
// Length is 16 byte
Cipher cipher = Cipher.GetInstance("AES/CBC/PKCS5Padding");
byte[] raw = System.Text.Encoding.Default.GetBytes(sKey);
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
IvParameterSpec iv = new IvParameterSpec(System.Text.Encoding.Default.GetBytes(ivParameter));//
cipher.Init(CipherMode.EncryptMode, skeySpec, iv);
// Wrap the output stream
CipherInputStream cis = new CipherInputStream(fs, cipher);
// Write bytes
int b;
byte[] d = new byte[1024 * 1024];
while ((b = cis.Read(d)) != -1)
{
fos.Write(d, 0, b);
}
// Flush and close streams.
fos.Flush();
fos.Close();
cis.Close();
stopTime = System.DateTime.Now.Millisecond;
Android.Util.Log.Error("Encryption Ended", extStore + "/5mbtest/" + filename + ".aes");
Android.Util.Log.Error("Time Elapsed", ((stopTime - startTime) / 1000.0) + "");
}
catch (Exception e)
{
Android.Util.Log.Error("lv",e.Message);
}
}
private void createFile(string filename, File extStore)
{
File file = new File(extStore + "/" + filename + ".aes");
if (filename.IndexOf(".") != -1)
{
try
{
file.CreateNewFile();
}
catch (IOException e)
{
// TODO Auto-generated catch block
Android.Util.Log.Error("lv",e.Message);
}
Android.Util.Log.Error("lv","file created");
}
else
{
file.Mkdir();
Android.Util.Log.Error("lv","folder created");
}
file.Mkdirs();
}
public void decrypt(string filename)
{
try
{
File extStore = Environment.GetExternalStoragePublicDirectory(Environment.DirectoryMovies);
Android.Util.Log.Error("Decryption Started", extStore + "");
FileInputStream fis = new FileInputStream(extStore + "/" + filename + ".aes");
createFile(filename, extStore);
FileOutputStream fos = new FileOutputStream(extStore + "/" + "decrypted" + filename, false);
System.IO.FileStream fs = System.IO.File.OpenWrite(extStore + "/" + "decrypted" + filename);
// Create cipher
Cipher cipher = Cipher.GetInstance("AES/CBC/PKCS5Padding");
byte[] raw = System.Text.Encoding.Default.GetBytes(sKey);
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
IvParameterSpec iv = new IvParameterSpec(System.Text.Encoding.Default.GetBytes(ivParameter));//
cipher.Init(CipherMode.DecryptMode, skeySpec, iv);
startTime = System.DateTime.Now.Millisecond;
CipherOutputStream cos = new CipherOutputStream(fs, cipher);
int b;
byte[] d = new byte[1024 * 1024];
while ((b = fis.Read(d)) != -1)
{
cos.Write(d, 0, b);
}
stopTime = System.DateTime.Now.Millisecond;
Android.Util.Log.Error("Decryption Ended", extStore + "/" + "decrypted" + filename);
Android.Util.Log.Error("Time Elapsed", ((stopTime - startTime) / 1000.0) + "");
cos.Flush();
cos.Close();
fis.Close();
}
catch (Exception e)
{
Android.Util.Log.Error("lv", e.Message);
}
}
}
}
视频只是为了测试,你可以从其他路径获取视频文件,稍微改变一下就可以了。
关于c# - Xamarin.android-如何更快地加密/解密图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48306345/
我已经从github https://github.com/xamarin/xamarin-forms-samples下载了Xamarin.Form示例项目 打开任何示例项目后,它不允许我在iOS S
我收到此错误: "MyApp\App.cs(7,7): Error CS0246: The type or namespace name 'Xamarin' could not be found (a
我想知道 Xamarin 是否带有 Mono 运行时及其所有应用程序包。在这种情况下,如果两个基于 Xamarin 的应用程序安装在一个设备上,该设备将拥有两个 Mono 运行时权利。这是 Xamar
如何将库导入 Xamarin? 例如,我将如何导入 json.net为我的项目使用 xamarin? 谢谢 最佳答案 Json.NET可免费获得精美包装 Xamarin-compatible Comp
我不知道如何在输入框中置顶占位符文本。 我有一个很大的输入框,想把占位符文本放在顶部。 最佳答案 您需要为每个平台创建一个自定义渲染器以对齐占位符,如下所示: public class Placeh
我很难找到有关Xamarin.Forms的后台任务支持的文档。 Xamarin.Forms是否提供对定期后台任务的支持? 我需要为Windows Phone 10和Android都实现此功能。 最佳答
Xamarin.iOS中是否提供iOS Picker?我进行了详尽的搜索,但是没有示例,也没有信息可查。但是,它在Xamarin.Form中可用。 最佳答案 UIPickerView的真实示例示例:(
有谁知道是否可以使用 Xamarin.Forms 创建CardView样式(可滚动)列表?我们需要它在iOS和Android上将呈现为相同的。还需要调整阴影等属性(略微提高每张卡) 最佳答案 这是一个
所以,我对 Xamarin 有点陌生,我试图弄清楚如何显示一个包含用户文本输入字段的弹出窗口。 DisplayAlert 不这样做,因为它没有文本输入字段。我应该使用什么? 最佳答案 您可以使用 Di
我有一个运行良好的表单应用程序,但我注意到当页面出现时,背景颜色在几分之一秒内设置不正确。 我有这个代码用于我的 OnAppearing protected override async vo
您好,我正在开发一个具有登录功能的应用程序,它可以选择让您保持登录状态,即使您关闭该应用程序也是如此。 问题是什么?这就是我在 App.cs 中所做的: var statusLog = Appli
由于BackgroundImage是一个字符串,您应该如何设置Page的背景图像?我将不胜感激任何建议。 到目前为止,我已经尝试过: MainPage = new ContentPage {
如何使用 Renderer 在 Xamarin Forms 中使用渐变效果创建此按钮? 最佳答案 在 xamarin 中,您不能将渐变颜色添加为内置功能。您必须创建不同的渲染功能。这个 link 将指
背景:我正在处理一个 C# 项目。过去,当我做 System.Console.WriteLine("Hello"); 我会看到一个弹出控制台打印“你好”。控制台今天消失了,我该怎么做才能让它再次出现?
我们每天都在使用 Xamarin 和 Xamarin Forms,并且经常遇到异常而没有任何关于如何调试的有用信息。 有时它是我们的目标,有时是 Xamarin 中的错误,尤其是 Xamarin Fo
我正在使用 xamarin studio(带有 nuget 包管理插件),并且在我的项目中有一些 nuget 包。 项目上下文菜单中有“管理”和“恢复 nuget 包”,但也有控制台吗? 最佳答案 X
我有一个 CustomCalendar 元素,它是通过扩展 ContentView 并在另一个 ContentPage 中使用此自定义 View 而创建的。我尝试使用非聚焦事件来检测外部点击。但是问题
因此,对于整个MVVM,我还是一个新手。我几乎了解它的基本知识。我有一个可以按原样工作的示例,但是我试图将其更改为MVVM样式。我只是尝试不同的例子,所以我可以学习。 (LoginPage.xaml)
我正在尝试使我的Xamarin项目在Prism和DryIoc中使用MVVM。 我主要想使用自动注册,如下所示: [AutoRegisterForNavigation] ... protected ov
我有一个问题,如何在 Forms Xamarin 中制作模态屏幕,如附加的图像。 我想知道你们是否可以向我发送一段代码或示例以了解如何做到这一点。 https://extravios.com.br/c
我是一名优秀的程序员,十分优秀!