首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • BUUCTF Cipher 1

    还能提示什么呢?公平的玩吧(密钥自己找) Dncnoqqfliqrpgeklwmppu 注意:得到的 flag 请包上 flag{} 提交, flag{小写字母}

    28600编辑于 2025-08-18
  • 来自专栏Ga1@xy's W0r1d

    davinci_cipher

    在这个网站可以在线转换 → https://r12a.github.io/app-conversion/

    81420编辑于 2023-04-25
  • 来自专栏饶文津的专栏

    【UVA 1586】Ancient Cipher

    题 题意 给你一个只含CHON的有机物的化学式如C6H5OH求相对分子质量 分析 。。。 代码 switch #include<cstdio> #include<cctype> int t; double w,m[5]= {12.01,1.008,16.00,14.01}; char s[100]; void add(int f,int i) { if(isdigit(s[i+1])) if(isdigit(s[i+2])) w+=m[f]*((s[i+1]

    30120发布于 2020-06-02
  • 来自专栏CTF Crypto

    BUUCTF Cipher 1 | playfair密码

    还能提示什么呢?公平的玩吧(密钥自己找) Dncnoqqfliqrpgeklwmppu 注意:得到的 flag 请包上 flag{} 提交, flag{小写字母}

    19332编辑于 2025-12-11
  • 来自专栏全栈程序员必看

    java中的Cipher

    例如,以下是有效的转换: Cipher c = Cipher.getInstance("DES/CBC/PKCS5Padding"); 使用 CFB 和 OFB 之类的模式,Cipher 块可以加密单元中小于该 因此,通过使用如 CFB8 或 OFB8 的 8 位模式,Cipher 块可以被转换为面向字节的 Cipher 流。 返回的参数可能与初始化此 Cipher 所使用的参数相同;如果此 Cipher 需要算法参数但却未使用任何参数进行初始化,则返回的参数将由默认值和底层 Cipher 实现所使用的随机参数值组成。 注意,初始化 Cipher 对象时,它将失去所有以前获得的状态。换句话说,初始化 Cipher 相当于创建该 Cipher 的一个新实例并将其初始化。 CipherCipher 块,未请求任何填充(只针对加密模式),并且由此 Cipher 处理的数据总输入长度不是块大小的倍数;如果此加密算法无法处理所提供的输入数据。

    1.6K30编辑于 2022-10-29
  • 来自专栏hotarugaliの技术分享

    UVA12604「Caesar Cipher

    题目 题目链接:UVA12604「Caesar Cipher」 。 Description In cryptography, a Caesar cipher, also known as Caesar’s cipher, the shift cipher, Caesar It is a type of substitution cipher in which each letter in the plaintext is replaced by a letter some We are given an alphabet , a string which is encrypted using a shift cipher and a plaintext word

    72320编辑于 2022-03-02
  • 来自专栏程序那些事

    密码学系列之:feistel cipher

    简介 feistel cipher也叫做Luby–Rackoff分组密码,是用来构建分组加密算法的对称结构。它是由德籍密码学家Horst Feistel在IBM工作的时候发明的。 feistel cipher也被称为Feistel网络。 很多分组加密算法都是在feistel cipher的基础上发展起来的,比如非常有名的DES算法。 在feistel cipher中,加密和解密的操作非常相似,通常需要进行多轮加密和解密操作。 本文已收录于 http://www.flydean.com/feistel-cipher/ 最通俗的解读,最深刻的干货,最简洁的教程,众多你不知道的小技巧等你来发现!

    81120发布于 2021-06-16
  • 【POJ】1026 - Cipher(置换群)

    点击打开题目 Cipher Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 21131 Accepted: 5800

    25810编辑于 2025-08-26
  • 来自专栏快乐阿超

    gitlab迁移后报错OpenL::cipher::CipherError

    73710编辑于 2023-11-30
  • 来自专栏程序那些事

    密码学系列之:feistel cipher

    简介 feistel cipher也叫做Luby–Rackoff分组密码,是用来构建分组加密算法的对称结构。它是由德籍密码学家Horst Feistel在IBM工作的时候发明的。 feistel cipher也被称为Feistel网络。 很多分组加密算法都是在feistel cipher的基础上发展起来的,比如非常有名的DES算法。 在feistel cipher中,加密和解密的操作非常相似,通常需要进行多轮加密和解密操作。 本文已收录于 http://www.flydean.com/feistel-cipher/

    1.6K10发布于 2021-07-15
  • 来自专栏全栈程序员必看

    call undefined function openssl_cipher_iv_length

    访问localhost/blog/public时,报错在verdor/framework/src/Illuminate/Encryption/Encrtpter.php的84行,找不到openssl_cipher_iv_length

    60730编辑于 2022-07-07
  • 来自专栏机器学习入门

    Ancient Cipher

    Ancient Cipher 传送门:POJ 2159. Ancient Cipher 题意: 给定两个长度相等的字符串a, b,问a是否由b映射过来。

    60260发布于 2018-01-02
  • 来自专栏Throwable's Blog

    JDK安全模块JCE核心Cipher使用详解

    Cipher的属性和方法 Cipher的七个主要公有属性 1、ENCRYPT_MODE,整型值1,加密模式,用于Cipher的初始化。 cipher = Cipher.getInstance("AES"); cipher.init(Cipher.UNWRAP_MODE, secretKeySpec); cipher.init(Cipher.ENCRYPT_MODE, secretKeySpec); //单部分加密结束,重置Cipher byte[] bytes = cipher.doFinal cipher.init(Cipher.DECRYPT_MODE, secretKeySpec); //单部分加密结束,重置Cipher byte[] result = cipher.doFinal cipher = Cipher.getInstance("AES"); cipher.init(Cipher.UNWRAP_MODE, secretKeySpec);

    3.6K30发布于 2020-06-23
  • 来自专栏第三方工具

    微信退费报错:SSLHandshakeException No appropriate protocol (protocol is disabled or cipher suites are inap

    微信退费报错:No appropriate protocol (protocol is disabled or cipher suites are inappropr) javax.net.ssl.SSLHandshakeException : No appropriate protocol (protocol is disabled or cipher suites are inappropriate) 1.第一种就是 把 “TLSv1” TLSv1"}, // 解决javax.net.ssl.SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher

    1.2K10编辑于 2024-10-09
  • 来自专栏ml

    uva--1339 - Ancient Cipher(模拟水体系列)

    The most popular ciphers in those times were so called substitution cipher and permutation cipher. Substitution cipher changes all occurrences of each letter to some other letter. Permutation cipher applies some permutation to the letters of the message. It was quickly noticed that being applied separately, both substitution cipher and permutation cipher was encrypted using permutation cipher.

    87070发布于 2018-03-26
  • 来自专栏若志随笔

    解决Chrome出现“ERR_SSL_VERSION_OR_CIPHER_MISMATCH”

    前言: 从现在开始本站将解析rz.sb作为本站访问地址~ 在我配置好宝塔的ssl,用chrome访问时,突然给我出现个“ERR_SSL_VERSION_OR_CIPHER_MISMATCH” 访问错误,

    19.8K20编辑于 2021-12-23
  • 来自专栏码生

    python 使用AES加解密 No module named Crypto.Cipher

    然后进入这个库的目录:Lib\site-packages 找到 crypto 这个库,更改为首字母大写 Crypto 即可 关于 No module named Crypto.Cipher 也是被坑了一大把一大把

    3.9K30发布于 2019-03-15
  • 来自专栏Hi, Python

    【解决方案】ImportError: No module named Crypto.Cipher

    版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

    2.9K10发布于 2019-09-29
  • 来自专栏程序员有故事

    javax.net.ssl.SSLHandshakeException: No appropriate protocol (protocol is disabled or cipher suites

    解决方案 因此在网络上查了半天,但是都没有找到确切的答案,也没解决掉问题,一段时间无果后,又看了一遍错误,protocol is disabled or cipher suites are inappropriate ,就感觉是不是protocol或者cipher参数配置有问题,然后就开始针对几个参数做了几次修改,最终可以正常通过https访问网站了。

    5.5K80发布于 2018-03-15
  • 来自专栏全栈程序员必看

    Laravel报错Call to undefined function IlluminateEncryptionopenssl_cipher_iv_length()

    nginx: 在phpstudy中运行Laravel一键安装包时报错:Call to undefined function Illuminate\Encryption\openssl_cipher_iv_length

    1.1K20编辑于 2021-12-23
领券