文档介绍:源程序代码等全套设计联系QQ 695132052 各专业都有
分类号: U D C:D10621-408-(2007) 6161-0
密级:公开编号:2003031271
成都信息工程学院
学位论文
3G的AKA协议中F1至F5的UE端的实现
论文作者姓名:
曹伟
申请学位专业:
计算机科学与技术
申请学位类别:
工学学士
指导教师姓名(职称):
陈麟(副教授)
论文提交日期:
2007年06月02 日
3G的AKA协议中F1至F5的UE端的实现
摘要
随着移动通信系统的不断发展,第三代移动通信系统(3G)成为当前通信领域研究开发的热点。在3G系统中,许多新型的数据业务将开放。在业务增多的同时,系统安全问题将变得更加重要。
AKA协议就是3G系统中用来实现用户终端与认证服务器端的双向认证及密钥分配机制的一个安全协议。3GPP为3G通信系统定义了12种鉴权算法:f0-f9,f1*和f5*。AKA利用了其中的f0-f5*算法。本次设计为其中的f1-f5算法在系统用户终端(user's equipment,UE端)的实现。设计采用AES作为内核加密算法,即Rijndael算法。因此,本次设计从AES入手,通过对AES的具体分析和代码实现,然后利用对AES的调用,实现f1-f5的功能。
AKA协议中的用户终端一般指智能卡,在3G系统中,也就是第三代手机卡。由于智能卡设备不像计算机系统那样充够足的资源,一般都采用8位系统。因此在设计内核算法的时候,考虑到程序在实现上花费的时间资源和硬件资源问题,采用8位的AES实现算法,而不是32位。另外,由于此次设计采用AES为核心算法,因此还对AES相关数学基础知识,实现原理做了详细的分析和了解。
关键词:AKA ;f1-f5 ;Rijndael
the UE Implement of F1 to F5 for 3G AKA Protocol
Abstract
Along with munication system unceasing development, the third generation munication system(3G) es the hot spot in the current munication domain. In the 3G system, many new data services will open. Increases which while the service, the system safety question will e more and more important.
The AKA protocol is a security protocol in the 3G system. It including seven algorithm: f1-f5, f1* and f5*. This design only involves f1-f5 on the user's equipment (UE) implement. This design is based on the AES encryption algorithm. So, in this article, contains two sides:f1-f5 and AES.
Because we design for the user's equipment terminal, it involves a question about whether the system hardware resources sufficient. So, this design uses 8 bit AES encryption algorithm.
Key words: AKA ; f1-f5 ; Rijndael
目录
论文总页数:24页
1 引言 1
课题背景 1
国内外研究现状 1
本课题研究的意义 1
本课题的研究方法 1
2 AES算法原理和C语言代码设计实现 2
分组密码设计准则 2
Rijndael算法综述 2
Rijndael加密步骤及C语言代码实现 4
SubBytes 4
ShiftRows 5
MixColumns 7
AddRoundKey 10
加密过程主函数 14
3 F1-F5算法介绍及C语言代码设计实现 14
f1-f5介绍 14
f1-f5的C语言代码实现 16
4 代码测试和案例 19
结论 21
参考文献