自信斑马

文章
6
资源
0
加入时间
2年10月17天

Caesar算法的3种实现

1、Ruby实现:caesar.rbdef encode(plaintext, offset) ciphertext = plaintext.dup for i in 0..(plaintext.length-1)  if plaintext[i]>=?a && plaintext[i]   ciphertext[i] = ?a + ((plaintext[i] - ?a + offset) %