39、文件的加密

39、文件的加密

简单文件加密

通过输入流将文件读取到内存里面之后,可以对这些数据做一些处理,之后再将数据写出到硬盘里面从而达到加密的效果。

package com.sutaoyu.IO;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class IO_test_4 {
    public static void main(String args) {
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        
        try {
            bis = new BufferedInputStream(new FileInputStream("BUffer缓冲.png"));
            bos = new BufferedOutputStream(new FileOutputStream("new.png"));
            int temp;
            while((temp = bis.read()) != -1) {
                 // 数据异或一个数字进行加密
                bos.write(temp^88);
            }
        }
        catch(FileNotFoundException e) {
            e.printStackTrace();
        }catch(IOException e) {
            e.printStackTrace();
        }
    }
}

文件解密

上面的加密操作就是在写出数据之前对数据进行异或操作,利用对一个数进行两次异或的结果就是他本身这个特点,将待解密的图片读取到内存里面,然后再进行异或操作写出即可。

package com.sutaoyu.IO;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class IO_test_5 {
    public static void main(String args) {
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        
        try {
            bis = new BufferedInputStream(new FileInputStream("new.png"));
            bos = new BufferedOutputStream(new FileOutputStream("code.png"));
            int temp;
            while((temp = bis.read()) != -1) {
                 // 数据异或一个数字进行加密
                bos.write(temp^88);
            }
        }
        catch(FileNotFoundException e) {
            e.printStackTrace();
        }catch(IOException e) {
            e.printStackTrace();
        }    
    }
}

 

转载于:https://www.cnblogs.com/zhuifeng-mayi/p/10142953.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/101247.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • hdu 3221 Brute-force Algorithm(高速幂取模,矩阵高速幂求fib)

    hdu 3221 Brute-force Algorithm(高速幂取模,矩阵高速幂求fib)

  • 【16】进大厂必须掌握的面试题-100个python面试

    【16】进大厂必须掌握的面试题-100个python面试

    2020年10月29日
  • SpringBoot test

    SpringBoot test原文地址:https://www.jianshu.com/p/72b19e24a602前言mac上idea快捷键,command+shift+T根据类生成快捷键。对spring容器中的类做单元测试在src/main下建立UserService类,对其进行单于测试,生产其单元测试类(使用command+shift+T快捷键),生成的test类在src/test下@Servi…

  • JWT原理介绍

    JWT原理介绍首先,OAuth2和jwt无必然的联系。OAuth2用在使用第三方账号登录的情况(比如使用weibo,qq,github登录某个app)JWT是用在前后端分离,需要简单的对后台API进行保护时使用.(前后端分离无session,频繁传用户密码不安全)OAuth2是一个相对复杂的协议,有4种授权模式,其中的accesscode模式在实现时可以使用jwt才生成code,也可以不用…

    2022年10月18日
  • Lunix历史及如何学习

    Lunix历史及如何学习1.Lunix是什么1.1Lunix是操作系统还是应用程序Lunix是一套操作系统,它提供了一个完整的操作系统当中最底层的硬件控制与资源管理的完整架构,这个架构是沿袭Unix良好的传统来的,所以相当的稳定而功能强大!Lunix具有核心和系统呼叫两层。Torvalds先生在1991年写出Linux核心的时候,其实该核心仅能『驱动386所有的硬件』而已,所…

  • CEGUI渲染概论

    CEGUI渲染概论
    1、几个重要的类
    Direct3D9Renderer负责CEGUI的Render的接口
    RenderingSurface渲染接口类
    RenderingWindow可渲染窗口
    RenderTarget的继承关系相关类。
    Direct3D9GeometryBuffer类
    其方法
     voiddraw()const;//渲染
       voidsetTranslation(constVector3&t);

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号