C#
Objective-C
C++/CLI
public enum DicomMacAlgorithm
typedef NS_ENUM(NSInteger, LTDicomMacAlgorithm) {
LTDicomMacAlgorithmRipemd160 = 0,
LTDicomMacAlgorithmSha1 = 1,
LTDicomMacAlgorithmMD5 = 2,
};
public enum class DicomMacAlgorithm
Value | Member | Description |
---|---|---|
0 | Ripemd160 | Use the RACE Integrity Primitives Evaluation (RIPEMD-160) hash function (recommended). |
1 | Sha1 | Use the Secure Hash Algorithm (SHA-1) hash function. |
2 | MD5 | Use the Message Digest - 5 (MD5) hash function. |