論文格式
            電氣工程 會計論文 金融論文 國際貿易 財務管理 人力資源 輕化工程 德語論文 工程管理 文化產業管理 信息計算科學 電氣自動化 歷史論文
            機械設計 電子通信 英語論文 物流論文 電子商務 法律論文 工商管理 旅游管理 市場營銷 電視制片管理 材料科學工程 漢語言文學 免費獲取
            制藥工程 生物工程 包裝工程 模具設計 測控專業 工業工程 教育管理 行政管理 應用物理 電子信息工程 服裝設計工程 教育技術學 論文降重
            通信工程 電子機電 印刷工程 土木工程 交通工程 食品科學 藝術設計 新聞專業 信息管理 給水排水工程 化學工程工藝 推廣賺積分 付款方式
            • 首頁 |
            • 畢業論文 |
            • 論文格式 |
            • 個人簡歷 |
            • 工作總結 |
            • 入黨申請書 |
            • 求職信 |
            • 入團申請書 |
            • 工作計劃 |
            • 免費論文 |
            • 合作期刊 |
            • 論文同學網 |
            搜索 高級搜索

            當前位置:論文格式網 -> 畢業論文 -> 計算機論文
            畢業論文標題:

            3G的AKA協議中F1至F5的服務網絡端實現

             本文ID:LWGSW13766 價格:收費積分/100
            掃一掃 掃一掃
            本站會員可自行下載:下載地址 3G的AKA協議中F1至F5的服務網絡端實現 (收費:1000 積分)  

            論文字數:9076,頁數:30

            摘  要
            隨著移動通信技術的飛速發展,3G的商用越來越普遍,其中的安全問題就顯得十分重要。因此如何保證業務信息的安全性以及網絡資源使用的安全性已成為3G系統中重要而迫切的問題。針對這種情況,ETSI與3GPP兩個基于GSM/GPRS網絡和WCDMA與TD/SCDMA系統標準化的組織,特別是ETSI的SAGE與3GPP的S3工作組專門對網絡安全方面的規范進行了研究。這里面就包括本文所涉及的密鑰分配協議(AKA協議)。
            AKA協議用于USIM、訪問位置寄存器(VLR)、歸屬位置寄存器(HLR)間的雙向認證及密鑰分配。3GPP為3G通信系統定義了12種鑒權算法:f0-f9,f1*和f5*。AKA利用了其中的f0-f5*算法。它的實現分為兩個方面,一個是在UE(手機)端的實現,另一個是在服務網絡端的實現。在UE端的實現是在基于8位的單片機上,而在服務網絡端的實現是在基于32位的處理器即PC機上,但都是采用的基于AES的內核算法,即Rijndael算法,由于硬件的不同,Rijndael算法實現時采用了不同的優化算法,本次設計是在服務網絡端的實現,因此,Rijndael算法采用了用查表的方式替代輪變換的優化算法,此次設計是從AES著手,通過對AES的分析和代碼實現,然后利用對AES的調用,實現f1-f5的功能。另外,由于此次設計采用AES為核心算法,因此還對AES相關數學基礎知識,實現原理做了詳細的分析。

            關鍵詞:3GPP;AKA;Rijndael;服務網絡端;密鑰生成算法

            The Service Network End Implement of F1 to F5 for 3G AKA Protocol
            Abstract
            Along with the mobile communication technology rapid development, so security problem appears importantly extremely. Therefore, how guaranteed the security of service information as well as the security of network resources has become in the 3G system important and the urgent question. In view of this kind of situation, both ETSI and 3GPP based on GSM/GPRS network and WCDMA and TD/SCDMA system standardization organization, specially ETSI's SAGE and The 3GPP S3 work team has specially conducted the research to the network security. It includes the key deed of distribution which this article involves (the AKA agreement).
            The AKA protocol uses in USIM, bidirectional authentication and the key assignment between visits location register (VLR) and belongs to the location register (HLR). 3GPP communications system defines 2 kind of warning power algorithm: f0 to f9, f1* and f5*. F0-f5* is used in AKA. Its implement divides into two aspects, one is in implement of UE (handset) terminal, and other is in the service network terminal. The implement of UE terminal is based on 8 monolithic integrated circuits, but the implement of service network terminal is in based on 32 processors which is on PC machine. But all are based on the AES essence algorithm, namely Rijndael algorithm. As a result of hardware difference, Rijndael algorithm has used the different optimized algorithm. This design is in the service network end implement, therefore, the Rijndael algorithm used has substituted a turn transformation with the table look-up way the optimized algorithm. This design is begins with AES, through to the AES analysis and the code implement, then the use to the AES, realizes the f1-f5 function. Moreover, because this design uses AES which is the core algorithm, it analyzes the AES correlation mathematics elementary knowledge and the implement principle.

            Key words: 3GPP; AKA; Rijndael; Service network end ;Key production algorithm

            目  錄

            1 引言 1
            1.1 課題背景 1
            1.2 國內外研究現狀 1
            1.3 本課題研究的意義 1
            1.4 本課題的研究方法 1
            2 相關數學基礎 2
            2.1 有限域GF (28) 2
            2.2 數在GF (28)中的多項式 3
            3 AES算法的設計準則及設計原理 4
            3.1 分組密碼通用準則 4
            3.2 Rijndael算法的設計原則和結構 5
            3.3 Rijndael算法加密輪變換原理 6
            3.3.1 SubBytes變換 7
            3.3.2 ShiftRows變換 8
            3.3.3 MixColumns變換 8
            3.3.4 AddRoundKey變換 9
            3.4 子密鑰生成算法 9
            4 算法優化及實現研究 11
            4.1 算法優化 11
            4.2 Rijdael算法C語言的實現: 13
            5 f1,f2,f3,f4,f5算法的研究 16
            5.1 f1-f5的介紹 16
            5.2 f1,f2,f3,f4,f5的實現 18
            6 測試結果 22
            結    論 24
            參考文獻 24
            致    謝 25
            聲    明 26


            相關論文
            本論文在計算機論文欄目,由論文格式網整理,轉載請注明來源www.donglienglish.cn,更多論文,請點論文格式范文查看
            上一篇:局域網監控程序的設計 下一篇:基于LOTUS的故障報修系統的設計與..
            Tags:AKA 協議 服務 網絡 實現 【收藏】 【返回頂部】
            最新文章
            熱門文章
            計算機論文
            推薦文章

            本站部分文章來自網絡,如發現侵犯了您的權益,請聯系指出,本站及時確認刪除 E-mail:349991040@qq.com

            論文格式網(www.donglienglish.cn--論文格式網拼音首字母組合)提供計算機論文畢業論文格式,論文格式范文,畢業論文范文

            Copyright@ 2010-2018 LWGSW.com 論文格式網 版權所有 蜀ICP備09018832號

            感谢您访问我们的网站,您可能还对以下资源感兴趣:

            论文格式网:毕业论文格式范文