我现在想做一个软件的注册程序,想通过硬盘的出厂序列号来进行加密,查阅了很多资料,也不知道怎样读出磁盘序列号,特高分向高人求救,要求此源代码能在各种WINDOWS OS上面运行成功,谢谢,up有分。

解决方案 »

  1.   

    你改用CPUID吧,也是独一无二的。
    可以使用Delphi的汇编实现。做成DLL就可以在VB里面用了。
      

  2.   

    VERSION 5.00
    Begin VB.Form Form1 
       Caption         =   "Form1"
       ClientHeight    =   2100
       ClientLeft      =   60
       ClientTop       =   345
       ClientWidth     =   4335
       LinkTopic       =   "Form1"
       ScaleHeight     =   2100
       ScaleWidth      =   4335
       StartUpPosition =   3  'Windows Default
       Begin VB.CommandButton Command1 
          Caption         =   "ÉèÖþí±ê"
          Height          =   375
          Left            =   3000
          TabIndex        =   5
          Top             =   120
          Width           =   975
       End
       Begin VB.TextBox Text1 
          Height          =   285
          Left            =   120
          TabIndex        =   1
          Top             =   840
          Width           =   2535
       End
       Begin VB.ComboBox Combo1 
          Height          =   315
          Left            =   120
          TabIndex        =   0
          Top             =   120
          Width           =   2535
       End
       Begin VB.Label Label3 
          Height          =   255
          Left            =   120
          TabIndex        =   4
          Top             =   1560
          Width           =   1215
       End
       Begin VB.Label Label2 
          Caption         =   "·ÖÇø¸ñʽ"
          Height          =   255
          Left            =   120
          TabIndex        =   3
          Top             =   1320
          Width           =   1215
       End
       Begin VB.Label Label1 
          Caption         =   "¾í±ê"
          Height          =   255
          Left            =   120
          TabIndex        =   2
          Top             =   600
          Width           =   1215
       End
    End
    Attribute VB_Name = "Form1"
    Attribute VB_GlobalNameSpace = False
    Attribute VB_Creatable = False
    Attribute VB_PredeclaredId = True
    Attribute VB_Exposed = False
    Private Declare Function GetDriveType Lib "kernel32" Alias _
            "GetDriveTypeA" (ByVal nDrive As String) As Long
    Private Declare Function GetVolumeInformation Lib "kernel32" Alias _
            "GetVolumeInformationA" (ByVal lpRootPathName As String, _
            ByVal lpVolumeNameBuffer As String, ByVal nVolumeNameSize _
            As Long, lpVolumeSerialNumber As Long, _
            lpMaximumComponentLength As Long, lpFileSystemFlags As _
            Long, ByVal lpFileSystemNameBuffer As String, ByVal _
            nFileSystemNameSize As Long) As Long
    Private Declare Function SetVolumeLabel Lib "kernel32" Alias _
            "SetVolumeLabelW" (ByVal lpRootPathName As String, ByVal _
            lpVolumeName As String) As LongPrivate Sub Combo1_Click()
        Dim sVolName As String * 256
        Dim sFileSys As String * 256
        Dim lVolSerial As Long
        Dim lMC As Long
        Dim lFileFlag As Long
        
        GetVolumeInformation Combo1.Text + ":\", sVolName, 256, lVolSerial, lMC, lFileFlag, sFileSys, 256
        Text1.Text = sVolName
        Label3.Caption = sFileSys
    End SubPrivate Sub Command1_Click()
        SetVolumeLabel Combo1.Text + ":\", Text1.Text
    End SubPrivate Sub Form_Load()
        For i = Asc("A") To Asc("Z")
            If GetDriveType(Chr(i) + ":\") > 1 Then
                Combo1.AddItem (Chr(i))
            End If
        Next i
    End Sub
      

  3.   

    用磁盘的序列号进行软件加密--------------------------------------------------------------------------------
    http://tech.sina.com.cn 2001/03/12  天极网 徐江
      用过共享软件的人都知道,一般的共享软件(特别是国外的)在使用一段时间后都会提出一些“苛刻”的要求,如让您输入注册号等等。如果您想在软件中实现该“功能”的话,方法有很多。在这里我介绍一种我认为安全性比较高的一种,仅供参考。  大家都知道,当您在命令行中键入“dir”指令后,系统都会读出一个称作Serial Number的十六进制数字。这个数字理论上有上亿种可能,而且很难同时找到两个序列号一样的硬盘。这就是我这种注册方法的理论依据,通过判断指定磁盘的序列号决定该机器的注册号。  要实现该功能,如何获得指定磁盘的序列号是最关键的。在Windows中,有一个GetVolumeInformation的API函数,我们利用这个函数就可以实现。  下面是实现该功能所需要的代码:  Private Declare Function GetVolumeInformation& Lib "kernel32" _  Alias "GetVolumeInformationA" (ByVal lpRootPathName As String, _  ByVal pVolumeNameBuffer As String, ByVal nVolumeNameSize As Long, _  lpVolumeSerialNumber As Long, lpMaximumComponentLength As Long, _  lpFileSystemFlags As Long, ByVal lpFileSystemNameBuffer As String, _  ByVal nFileSystemNameSize As Long)  Private Const MAX_FILENAME_LEN = 256  Public Function DriveSerial(ByVal sDrv As String) As Long  'Usage:  'Dim ds As Long  'ds = DriveSerial("C")  Dim RetVal As Long  Dim str As String * MAX_FILENAME_LEN  Dim str2 As String * MAX_FILENAME_LEN  Dim a As Long  Dim b As Long  GetVolumeInformation sDrv & ":\", str, MAX_FILENAME_LEN, RetVal, _  a, b, str2, MAX_FILENAME_LEN  DriveSerial = RetVal  End Function  如果我们需要某个磁盘的序列号的话,只要DriverSerial(该磁盘的盘符)即可。如DriverASerialNumber=DriverSerial("A")。  下面,我们就可以利用返回的磁盘序列号进行加密,需要用到一些数学知识。在这里我用了俄罗斯密码表的加密算法对进行了数学变换的序列号进行加密。下面是注册码验证部分的代码:   Public Function IsValidate(ByVal SRC As Long, ByVal Value As String) As Boolean  Dim SourceString As String  Dim NewSRC As Long  For i = 0 To 30  If (SRC And 2 ^ i) = 2 ^ i Then  SourceString = SourceString + "1"  Else  SourceString = SourceString + "0"  End If  Next i  If SRC < 0 Then  SourceString = SourceString + "1"  Else  SourceString = SourceString + "0"  End If
      Dim Table As String  Dim TableIndex As Integer  '================================================================================  '这是密码表,根据你的要求换成别的,不过长度要一致  '================================================================================  '注意:这里的密码表变动后,对应的注册号生成器的密码表也要完全一致才能生成正确的注册号  Table = "JSDJFKLUWRUOISDH;KSADJKLWQ;ABCDEFHIHL;KLADSHKJAGFWIHERQOWRLQH"  '================================================================================  Dim Result As String  Dim MidWord As String  Dim MidWordValue As Byte  Dim ResultValue As Byte  For t = 1 To 1  For i = 1 To Len(SourceString)  MidWord = Mid(SourceString, i, 1)  MidWordValue = Asc(MidWord)  TableIndex = TableIndex + 1  If TableIndex > Len(Table) Then TableIndex = 1  ResultValue = Asc(Mid(Table, TableIndex, 1)) Mod MidWordValue  Result = Result + Hex(ResultValue)  Next i  SourceString = Result  Next t  Dim BitTORool As Integer  For t = 1 To Len(CStr(SRC))  BitTORool = SRC And 2 ^ t  For i = 1 To BitTORool  SourceString = Right(SourceString, 1) _  + Left(SourceString, Len(SourceString) - 1)  Next i  Next t  If SourceString = Value Then IsValidate = True  End Function  由于代码较长,还有一些部分的代码在此省略,您可以去我的网站(http://vbtechnology.yeah.net)下载源程序研究一下。
      最后,我们就可以利用这些子程序进行加密了。
      

  4.   

    不好意思,我已经找到了,谢谢各位,但是你们说的都是驱动器的序列号,我要的是硬盘出厂序列号啊,我在http://vip.6to23.com/NowCan1/tech/vb_hd_info.htm上面找到了一个格式化后都不变的,大家可以去看看。
      

  5.   

    http://expert.csdn.net/Expert/topic/1526/1526713.xml?temp=.7258112http://expert.csdn.net/Expert/topic/1526/1526703.xml?temp=.2954523http://expert.csdn.net/Expert/topic/1526/1526710.xml?temp=.2122309http://expert.csdn.net/Expert/topic/1526/1526696.xml?temp=.6601679