I am getting an error if I change PasswordDeriveByres to Rfc2898DeriveBytes...

vb Code:
  1. Dim password_derive_bytes As New Rfc2898DeriveBytes(password, Nothing, "SHA384", 1000)
  2.         key = password_derive_bytes.GetBytes(key_size_bits \ 8)
  3.         iv = password_derive_bytes.GetBytes(block_size_bits \ 8)

no accessible 'New' accepts this number of arguments...