美文网首页
A5加密解密

A5加密解密

作者: 煊奕 | 来源:发表于2019-01-11 19:50 被阅读0次

算法分析

  1. A5算法已被应用于GSM通信系统中,用于加密从手机到基站的连接,以保护语音通信。一个GSM语言消息被转换成一系列的帧,每帧长228位,每帧用A5进行加密。
  2. A5算法主要由三个长度不同的线性移位寄存器组成,即A, B, C。其中A有19位,B有22位,C有23位。
  3. 移位由时钟控制的,且遵循“择多”的原则。即从每个寄存器中取出一个中间位,三个数中占多数的寄存器参加移位,其余的不移位。
    A5算法示意图
    可以参考:A5算法理解

GSM中使用A5流密码算法

算法实现

import re

def createkey(key,Fn):
    tem = strtobin(key)
    # 线性反馈移位寄存器LFSR A,B,C
    A = list(tem[:19])
    B = list(tem[19:41])
    C = list(tem[41:])
    res = []
    for i in range(114):
        resa = int(A[13]) ^ int(A[16]) ^ int(A[17]) ^ int(A[18])
        resb = int(B[12]) ^ int(A[16]) ^ int(B[20]) ^ int(B[21])
        resc = int(C[17]) ^ int(C[18]) ^ int(C[21]) ^ int(C[22])
        if int(A[9]) ^ int(B[11]) ^ int(C[11]) == 1:
            if  A[9] == '1' and B[11] == '1':
                A[1: 18] = A[0: 17]
                A[0] = str(resa)
                B[1: 21] = B[0: 20]
                B[0] = str(resb)
            elif A[9] == '1' and C[11] == '1':
                A[1: 18] = A[0: 17]
                A[0] = str(resa)
                C[1: 22] = C[0: 21]
                C[0] = str(resc)
            else:
                B[1: 21] = B[0: 20]
                B[0] = str(resb)
                C[1: 22] = C[0: 21]
                C[0] = str(resc)
        else:
            if A[9] == '0' and B[11] == '0':
                A[1: 18] = A[0: 17]
                A[0] = str(resa)
                B[1: 21] = B[0: 20]
                B[0] = str(resb)
            elif A[9] == '0' and C[11] == '0':
                A[1: 18] = A[0: 17]
                A[0] = str(resa)
                C[1: 22] = C[0: 21]
                C[0] = str(resc)
            else:
                B[1: 21] = B[0: 20]
                B[0] = str(resb)
                C[1: 22] = C[0: 21]
                C[0] = str(resc)
        res.append(int(A[18]) ^ int(B[21]) ^ int(C[22]))
    Fn = list(Fn)
    for i in range(22):
        B[i] = int(B[i]) ^ int(Fn[i])
    for i in range(114):
        resa = int(A[13]) ^ int(A[16]) ^ int(A[17]) ^ int(A[18])
        resb = int(B[12]) ^ int(A[16]) ^ int(B[20]) ^ int(B[21])
        resc = int(C[17]) ^ int(C[18]) ^ int(C[21]) ^ int(C[22])
        if int(A[9]) ^ int(B[11]) ^ int(C[11]) == 1:
            if A[9] == '1' and B[11] == '1':
                A[1: 18] = A[0: 17]
                A[0] = str(resa)
                B[1: 21] = B[0: 20]
                B[0] = str(resb)
            elif A[9] == '1' and C[11] == '1':
                A[1: 18] = A[0: 17]
                A[0] = str(resa)
                C[1: 22] = C[0: 21]
                C[0] = str(resc)
            else:
                B[1: 21] = B[0: 20]
                B[0] = str(resb)
                C[1: 22] = C[0: 21]
                C[0] = str(resc)
        else:
            if A[9] == '0' and B[11] == '0':
                A[1: 18] = A[0: 17]
                A[0] = str(resa)
                B[1: 21] = B[0: 20]
                B[0] = str(resb)
            elif A[9] == '0' and C[11] == '0':
                A[1: 18] = A[0: 17]
                A[0] = str(resa)
                C[1: 22] = C[0: 21]
                C[0] = str(resc)
            else:
                B[1: 21] = B[0: 20]
                B[0] = str(resb)
                C[1: 22] = C[0: 21]
                C[0] = str(resc)
        res.append(int(A[18]) ^ int(B[21]) ^ int(C[22]))
    return res

# 字符串转换为二进制字符串
def strtobin(s):
    res = []
    for c in s:
        tem = bin(ord(c)).replace('b', '')
        # 转为字符串时,后7位中,如果存在前面为0,会自动去掉,需要加回来,使之满足8位
        if len(tem) < 8:
            tem = "0" + tem
        res.append(tem)
    return ''.join(res)

# 二进制转字符串
def bintostr(s):
    tem = ""
    for i in s:
        tem += str(chr(int(i, base=2)))
    return tem

# 将明文字符串分割为指定长度字符串并存于列表中
def cut_text(text, lenth):
    tem = re.findall('.{' + str(lenth) + '}', text)
    tem.append(text[(len(tem) * lenth):])
    # 由于分割后,末尾出现一个空字符,故去掉
    result = [i for i in tem if i != '']
    return result

if __name__ == "__main__":
    # 明文
    plaintext = "ifnottothesunforsmilingwarmisstillinthesuntherebutwewilllaughmoreconfidentcalmifturnedtofoundhisownshadowappropriateescapethesunwillbethroughtheheartwarmeachplacebehindthecornerifanoutstretchedpalmcannotfallbutterflythenclenchedwavingarmsgivenpowerificanthavebrightsmileitwillfacetothesunshineandsunshinesmiletogetherinfullbloom"
    # 秘钥
    key = "asdfghjk"
    # 转换成二进制
    mtext = strtobin(plaintext)
    key = strtobin(key)
    # 帧号码Fn 22位
    Fn = "0101101000110101010101"
    # 生成密钥流
    keystream = createkey(key, Fn)

    # 加密
    mlist = cut_text(mtext, 228)
    ciphertext = ""
    for t in mlist:
         # 对每组明文分别加密
         for i in range(len(t)):
             ciphertext += str(int(keystream[i]) ^ int(t[i]))
    print("加密后得到的密文为: \n" + hex(int(ciphertext,2)).upper()[2:])

    # 解密
    clist = cut_text(ciphertext, 228)
    res = ""
    for t in clist:
        for i in range(len(t)):
            res += str(int(keystream[i]) ^ int(t[i]))
    result = cut_text(res, 8)
    end = bintostr(result)
    print("解密后得到的明文为: \n" + end)


加解密


相关文章

  • A5加密解密

    算法分析 A5算法已被应用于GSM通信系统中,用于加密从手机到基站的连接,以保护语音通信。一个GSM语言消息被转换...

  • AES加密代码(.net和java可互转)

    .net加密解密代码 java加密解密代码

  • 最近用到的一些String的一些常用方法

    string的Base64加密/解密 oc 加密 oc解密 swift 加密 swift 解密 oc字典转jso...

  • https简单介绍

    # 对称加密 加密解密使用同一个密钥,速度较快,如aes # 非对称加密 公钥加密,私钥解密,私钥加密,公钥解密,...

  • 加密

    来源于:MD5加密,Base64加密/解密,AES加密/解密

  • Rsa加解密

    /*** Rsa 加解密* 用法:* (1)公钥加密,私钥解密* (2)私钥加密,公钥解密*/class ...

  • iOS开发证书相关总结

    加密、解密 对称加密、非对称加密 对称加密:加密、解密使用相同的密钥;DES、AES(Mac、Windows的磁盘...

  • Java AES/DES加密&解密

    DES DES加密&解密代码如下: AES AES加密&解密代码如下:

  • 非对称加密和对称加密

    非对称加密和对称加密在加密和解密过程、加密解密速度、传输的安全性上都有所不同,具体介绍如下: 1、加密和解密过程不...

  • 非对称加密和对称加密的区别

    非对称加密和对称加密在加密和解密过程、加密解密速度、传输的安全性上都有所不同,具体介绍如下: 1、加密和解密过程不...

网友评论

      本文标题:A5加密解密

      本文链接:https://www.haomeiwen.com/subject/aikfdqtx.html