BMXNET 4.0 Developer API
The crypto used to implement the socket-based BMXNET Broker. Any crypto can be used if a new
.NET EncryptionProvider is written and a corresponding modification to the RPMS-side is done.
Namespace:
IndianHealthService.BMXNet.NetAssembly: BMXNET40 (in BMXNET40.dll)
Syntax
C# | Visual Basic | Visual C++ |
public interface EncryptionProvider
Public Interface EncryptionProvider
public interface class EncryptionProvider
Members
All Members | Methods |
Public Protected | Instance Static | Declared Inherited | XNA Framework Only .NET Compact Framework Only |
Member | Description | |
---|---|---|
Decrypt(String) |
Decrypt aString
| |
Encrypt(String) |
Encrypt aString
|
Remarks
An quick experiment can be done by implementing the following ClearText EncryptionProvider and
modifying the RPMS-side encryption routines to do nothing.
Copy Code | |
---|---|
public class ClearText : EncryptionProvider { public string Encrypt(string aString) { return aString; } public string Decrypt(string aString) { return aString; } } |