0

好吧,我放弃了。我想我会把它留给众包机器。

有人可以制作相当于以下 2 个类中的任何一个的 PHP 5 吗?(我的意思是两者都加密

Silverlight 密码学 1 类:

Public Class AES128Helper
    Public Password As String = Nothing
    Public PasswordSalt As String = Nothing
    Private DefaultIntSize As Integer = 4

    Public Function Encryptaes128(ByVal PlainText() As Byte) As Byte()
        Try
            Using MStream As New MemoryStream 'Memory stream to write encrypted data to.
                Using A128 As New AesManaged
                    'Key.
                    Dim DeriveBytes As New Rfc2898DeriveBytes(Password, Encoding.UTF8.GetBytes(PasswordSalt))
                    A128.Key = DeriveBytes.GetBytes(128 / 8)
                    'IV.
                    If Integer.MaxValue = Int64.MaxValue Then DefaultIntSize = 8
                    MStream.Write(BitConverter.GetBytes(A128.IV.Length), 0, DefaultIntSize)
                    MStream.Write(A128.IV, 0, A128.IV.Length)
                    'Create Crypto Stream that transforms memory stream using des encryption.
                    Using CryptoStream As New CryptoStream(MStream, A128.CreateEncryptor(), CryptoStreamMode.Write)
                        'Write out and flush TripleDES encrypted file to memory stream.
                        With CryptoStream
                            .Write(PlainText, 0, PlainText.Length)
                            .FlushFinalBlock()
                        End With
                        CryptoStream.Close()
                    End Using
                    'Return encrypted data.
                    Return MStream.ToArray
                End Using
                MStream.Close()
            End Using
        Catch ex As Exception
            Return Nothing
        End Try
    End Function

    Public Function Decryptaes128(ByVal EncryptedByteData() As Byte) As Byte()
        Try
            Using MStream As MemoryStream = New MemoryStream(EncryptedByteData) 'Memory stream to write decrypted data to.
                Using A128 As New AesManaged
                    'Key.
                    Dim DeriveBytes As New Rfc2898DeriveBytes(Password, Encoding.UTF8.GetBytes(PasswordSalt))
                    A128.Key = DeriveBytes.GetBytes(128 / 8)
                    'Get the IV from the encrypted stream.
                    A128.IV = ReadByteArray(MStream)
                    'Create crypto stream set to read and do a TripleDES decryption transform on incoming bytes.
                    Using CryptoStream As New CryptoStream(MStream, A128.CreateDecryptor(), CryptoStreamMode.Read)
                        'Get the decrypted bytes.
                        Dim DestArray() As Byte = New BinaryReader(CryptoStream).ReadBytes(MStream.Length * 2)
                        Return DestArray 'Return decrypted data.
                    End Using
                End Using
                MStream.Close()
            End Using
        Catch ex As Exception
            Return Nothing
        End Try
    End Function

    Private Function ReadByteArray(ByVal s As Stream) As Byte()
        If Integer.MaxValue = Int64.MaxValue Then DefaultIntSize = 8
        Dim rawLength(DefaultIntSize - 1) As Byte
        If s.Read(rawLength, 0, rawLength.Length) <> rawLength.Length Then
            Throw New SystemException("Stream did not contain properly formatted byte array.")
        End If
        Dim buffer(BitConverter.ToInt32(rawLength, 0) - 1) As Byte
        If s.Read(buffer, 0, buffer.Length) <> buffer.Length Then
            Throw New SystemException("Did not read byte array properly.")
        End If
        Return buffer
    End Function
End Class

上述示例用法:

Dim g As New AES128Helper
g.Password = "Password"
g.PasswordSalt = "PasswordSalt"
Dim b As Byte() = System.Text.Encoding.UTF8.GetBytes("Sad day really.")
Dim b2 As Byte() = g.Encryptaes128(b)
Dim b64 As String = Convert.ToBase64String(b2)

或者对于这个 Silverlight 课程(如果您认为它更容易)

Public Class AES128Helper2
    Public Key As Byte() = Nothing
    Public IV As Byte() = Nothing

    Public Function Encryptaes128(ByVal PlainText() As Byte) As Byte()
        Dim CryptoStream As CryptoStream = Nothing
        Dim MStream As New System.IO.MemoryStream 'Memory stream to write encrypted data to.
        Dim A128 As New AesManaged
        Try
            'Create aes128 Encryptor from this instance.
            Dim A128Encrypt As ICryptoTransform = A128.CreateEncryptor(Key, IV)
            'Create Crypto Stream that transforms memory stream using des encryption.
            CryptoStream = New CryptoStream(MStream, A128Encrypt, CryptoStreamMode.Write)
            'Write out and flush TripleDES encrypted file to memory stream.
            With CryptoStream
                .Write(PlainText, 0, PlainText.Length)
                .FlushFinalBlock()
            End With
            'Return encrypted data.
            Return MStream.ToArray
        Catch ex As Exception
            Return Nothing
        Finally 'Close streams.
            If CryptoStream IsNot Nothing Then CryptoStream.Close()
            If MStream IsNot Nothing Then MStream.Close()
        End Try
        Return Nothing
    End Function

    Public Function Decryptaes128(ByVal EncryptedByteData() As Byte) As Byte()
        Dim MStream As System.IO.MemoryStream = Nothing 'Memory stream to write decrypted data to.
        Dim CryptoStreamDecr As CryptoStream
        Dim A128 As New AesManaged
        Try
            'Create aes128 instance and Decryptor.
            Dim A128Decrypt As ICryptoTransform = A128.CreateDecryptor(Key, IV)
            'Create crypto stream set to read and do a TripleDES decryption transform on incoming bytes.
            MStream = New MemoryStream(EncryptedByteData)
            CryptoStreamDecr = New CryptoStream(MStream, A128Decrypt, CryptoStreamMode.Read)
            'Get the decrypted bytes.
            Dim DestArray() As Byte = New BinaryReader(CryptoStreamDecr).ReadBytes(MStream.Length * 2)
            Return DestArray 'Return decrypted data.
        Catch ex As Exception
            Return Nothing
        Finally 'Close streams.
            If MStream IsNot Nothing Then MStream.Close()
            '-- Don't use the following. It gives error "Stream does not support writing
            'If Not (cryptostreamDecr Is Nothing) Then cryptostreamDecr.Close()
        End Try
        Return Nothing
    End Function

    Public Function Md5Hash(ByVal ByteData() As Byte) As Byte()
        Return New MD5CryptoServiceProvider().ComputeHash(ByteData)
    End Function

    Public Function Md5HashString(ByVal ByteData() As Byte) As String
        Return BitConverter.ToString(Md5Hash(ByteData)).Replace("-", "").ToLower()
    End Function
End Class

上述示例用法:

Dim c As New Cryptography.AES128Helper
Dim md5 As String = c.Md5HashString(UTF8Encoding.UTF8.GetBytes("Password"))
Dim key As Byte() = System.Text.Encoding.UTF8.GetBytes(md5)
Dim iv As Byte() = System.Text.Encoding.UTF8.GetBytes("PasswordSalt")
Dim data As Byte() = System.Text.Encoding.UTF8.GetBytes("Sad day really.")
c.Key = key
c.IV = iv
Dim enc As Byte() = c.Encryptaes128(data)
Dim b64 As String = Convert.ToBase64String(enc)

再次,我想要的是一个 PHP mcrypt 函数,它接受一个 base 64 字符串、Password 和 PasswordSalt 变量,然后吐出解密后的“Sad day really”。

(注意:第二类的 MD5 功能是另一个自定义类,因为 SL 不支持 MD5。如果有人需要,我很乐意在这里发布。)

下面的 PHP 不起作用。

$cc = $_POST['VariableFromSilverlight'];
$key = 'Password';
$iv = 'PasswordSalt';
$length = strlen($cc);
$cipher = mcrypt_module_open("rijndael-128", '', 'cbc', '');
$ks = mcrypt_enc_get_key_size($cipher);
$key = substr(md5($key), 0, $ks);
mcrypt_generic_init($cipher, $key, $iv);
$decrypted = mdecrypt_generic($cipher, $cc);
mcrypt_generic_deinit($cipher);
echo "decrypted: " . substr($decrypted, 0, $length) . "\n";
4

1 回答 1

-1

为什么不使用 openssl PHP 扩展?它工作正常(我将它用于 DES 和 3DES,它就像一个魅力)。

于 2009-07-21T21:07:16.920 回答