久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<i id='ScY2C'><tr id='ScY2C'><dt id='ScY2C'><q id='ScY2C'><span id='ScY2C'><b id='ScY2C'><form id='ScY2C'><ins id='ScY2C'></ins><ul id='ScY2C'></ul><sub id='ScY2C'></sub></form><legend id='ScY2C'></legend><bdo id='ScY2C'><pre id='ScY2C'><center id='ScY2C'></center></pre></bdo></b><th id='ScY2C'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='ScY2C'><tfoot id='ScY2C'></tfoot><dl id='ScY2C'><fieldset id='ScY2C'></fieldset></dl></div>

  1. <tfoot id='ScY2C'></tfoot>

    <legend id='ScY2C'><style id='ScY2C'><dir id='ScY2C'><q id='ScY2C'></q></dir></style></legend>
    1. <small id='ScY2C'></small><noframes id='ScY2C'>

        <bdo id='ScY2C'></bdo><ul id='ScY2C'></ul>
    2. Microsoft 的 GUID 生成器在密碼學(xué)上是否安全

      Is Microsoft#39;s GUID generator cryptographically secure(Microsoft 的 GUID 生成器在密碼學(xué)上是否安全)

                <tbody id='sDKOZ'></tbody>
            1. <legend id='sDKOZ'><style id='sDKOZ'><dir id='sDKOZ'><q id='sDKOZ'></q></dir></style></legend>
            2. <tfoot id='sDKOZ'></tfoot>

                <bdo id='sDKOZ'></bdo><ul id='sDKOZ'></ul>
              • <small id='sDKOZ'></small><noframes id='sDKOZ'>

              • <i id='sDKOZ'><tr id='sDKOZ'><dt id='sDKOZ'><q id='sDKOZ'><span id='sDKOZ'><b id='sDKOZ'><form id='sDKOZ'><ins id='sDKOZ'></ins><ul id='sDKOZ'></ul><sub id='sDKOZ'></sub></form><legend id='sDKOZ'></legend><bdo id='sDKOZ'><pre id='sDKOZ'><center id='sDKOZ'></center></pre></bdo></b><th id='sDKOZ'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='sDKOZ'><tfoot id='sDKOZ'></tfoot><dl id='sDKOZ'><fieldset id='sDKOZ'></fieldset></dl></div>
                本文介紹了Microsoft 的 GUID 生成器在密碼學(xué)上是否安全的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                問題描述

                限時送ChatGPT賬號..

                我已經(jīng)在網(wǎng)上搜索了多個資源,但到目前為止,對于 Microsoft 的 GUID 生成機(jī)制是否足夠安全以保證將其用作跨應(yīng)用程序的唯一 ID 的問題,我無法找到明確的答案.

                I have searched multiple resources online, but so far have been unable to find a definitive answer to the question of whether Microsoft's GUID generation mechanism is secure enough to warrant it's use as a unique ID across an application.

                為了澄清,通過足夠安全",我的意思是詢問用于生成 GUID 的算法是否有任何已知的弱點(diǎn)或漏洞,可能會降低 GUID 的有效隨機(jī)性即導(dǎo)致不可忽略的碰撞次數(shù).如果不是,這是否意味著 GUID 完全不可猜測,如果是,是否有某種方法可以為 GUID 生成器函數(shù)播種以有效增加生成的 GUID 的隨機(jī)性.

                To clarify, by 'secure enough', I mean to ask whether the algorithm used to generate the GUID has any known weaknesses or vulnerability that could reduce the effective randomness of the GUID i.e. result in a non-negligible number of collisions. If no, does this mean the GUID is completely unguessable, and if yes, is there some way to seed the GUID generator function to effectively increase the randomness of the generated GUID.

                基于此處 MSDN 指南中指定的信息 (http://msdn.microsoft.com/en-us/library/system.guid.aspx)是否有任何跡象表明可以依賴用于生成 GUID 的系統(tǒng)足夠隨機(jī).

                Based on the information specified in MSDN guide here (http://msdn.microsoft.com/en-us/library/system.guid.aspx) is there any indication that the system used to generate the GUID can be relied upon to be sufficiently random.

                謝謝!

                推薦答案

                沒有.Guid 的目標(biāo)是唯一,但加密安全意味著它是不可預(yù)測的.這些目標(biāo)有時(但并非總是)一致.

                No. The goal of the Guid is to be unique, but cryptographically secure implies that it is unpredictable. These goals sometimes, but not always, align.

                如果您想要加密安全,那么您應(yīng)該使用類似 RNGCryptoServiceProvider

                If you want cryptographically secure, then you should use something like RNGCryptoServiceProvider

                另見:

                • System.Guid.NewGuid() 有多隨機(jī)?(拍兩張)
                • GUID 的安全性如何?

                以上兩個鏈接的重點(diǎn)是微軟的Guid是UUID的實(shí)現(xiàn),UUID 規(guī)范表明它們不應(yīng)用作安全令牌:

                The key point in both the above links is that Microsoft's Guid is an implementation of UUID, and the UUID spec indicates that they should not be used as security tokens:

                不要假設(shè) UUID 很難猜;例如,它們不應(yīng)該用作安全功能(僅擁有授予訪問權(quán)限的標(biāo)識符).一個可預(yù)測的隨機(jī)數(shù)來源會加劇這種情況.

                Do not assume that UUIDs are hard to guess; they should not be used as security capabilities (identifiers whose mere possession grants access), for example. A predictable random number source will exacerbate the situation.

                這篇關(guān)于Microsoft 的 GUID 生成器在密碼學(xué)上是否安全的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

                相關(guān)文檔推薦

                Deleting a directory when clicked on a hyperlink with JAvascript.ASP.NET C#(單擊帶有 JAvascript.ASP.NET C# 的超鏈接時刪除目錄)
                asp.net listview highlight row on click(asp.net listview 在單擊時突出顯示行)
                Calling A Button OnClick from a function(從函數(shù)調(diào)用按鈕 OnClick)
                ASP.net C# Gridview ButtonField onclick event(ASP.net C# Gridview ButtonField onclick 事件)
                Adding OnClick event to ASP.NET control(將 OnClick 事件添加到 ASP.NET 控件)
                Multiple submit Button click problem?(多個提交按鈕點(diǎn)擊問題?)
                  <bdo id='IQOjH'></bdo><ul id='IQOjH'></ul>
                  • <tfoot id='IQOjH'></tfoot>

                    <small id='IQOjH'></small><noframes id='IQOjH'>

                    <legend id='IQOjH'><style id='IQOjH'><dir id='IQOjH'><q id='IQOjH'></q></dir></style></legend>
                      1. <i id='IQOjH'><tr id='IQOjH'><dt id='IQOjH'><q id='IQOjH'><span id='IQOjH'><b id='IQOjH'><form id='IQOjH'><ins id='IQOjH'></ins><ul id='IQOjH'></ul><sub id='IQOjH'></sub></form><legend id='IQOjH'></legend><bdo id='IQOjH'><pre id='IQOjH'><center id='IQOjH'></center></pre></bdo></b><th id='IQOjH'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='IQOjH'><tfoot id='IQOjH'></tfoot><dl id='IQOjH'><fieldset id='IQOjH'></fieldset></dl></div>
                            <tbody id='IQOjH'></tbody>
                        1. 主站蜘蛛池模板: 久久最新精品 | 成年人视频免费在线观看 | 亚洲成人精品在线观看 | 欧美午夜一区 | 欧美一区二区三区在线看 | 成人午夜免费在线视频 | 国产精品视频久久 | 五月激情综合网 | 亚洲国产精品一区 | 国产日韩欧美一区二区在线播放 | 日本精品视频一区二区 | 欧美激情亚洲 | 国产乱码精品一区二区三区中文 | 欧美激情精品久久久久 | 欧美九九九 | 在线播放国产视频 | japanhd成人| 日日天天 | 久久久影院| a级黄色片在线观看 | 日韩激情在线 | 精品一区欧美 | 欧美操操操 | 手机在线观看 | 一区二区三区中文字幕 | 久久免费视频1 | 午夜激情网| 久久精品黄色 | 麻豆av片 | 精品入口麻豆88视频 | 久久精品欧美一区二区三区不卡 | 情侣黄网站免费看 | 日韩一区二区三区视频 | 国产精品96久久久久久 | 亚洲精品乱码久久久久久按摩观 | 日韩精品 电影一区 亚洲 | 午夜精品久久久久久久星辰影院 | 天天干天天干 | 中文字幕国产视频 | 亚洲精品一区二区三区在线观看 | www97影院 |