| Package | Description |
|---|---|
| cdac.medinfo.sdk.dcm30_04.services.basicdicommediasecurityprofile |
This package provides classes for BasicDICOMMediaSecurityProfile.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumProfileAlgorithm |
EnumProfileAlgorithm.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumProfileAlgorithm[] |
EnumProfileAlgorithm.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BasicDICOMMediaSecurityProfile.decryptDICOMFileSet(java.lang.String strSecureDICOMDIRPath,
java.lang.String strSourceDICOMDIRPath,
EnumProfileAlgorithm enumProfileAlgorithm,
byte[] objKey,
byte[] objIV)
This method decrypts the DICOMDIR file set and generates original DICOM file-set.
|
void |
BasicDICOMMediaSecurityProfile.decryptSecureDICOMFile(java.lang.String strSecureDICOMFilePath,
java.lang.String strDICOMFilePath,
EnumProfileAlgorithm enumProfileAlgorithm,
byte[] objKey,
byte[] objIV)
This method decrypts the secure DICOM file according to the profile algorithm , key and initializing vector provided to it.
|
void |
BasicDICOMMediaSecurityProfile.encryptDICOMFile(java.lang.String strDICOMFilePath,
java.lang.String strSecureDICOMFilePath,
EnumProfileAlgorithm enumProfileAlgorithm,
byte[] objKey,
byte[] objIV)
This method encrypts the DICOM file and dumped it on destination path provided as secure dicom file path.
|
void |
BasicDICOMMediaSecurityProfile.encryptDICOMFileSet(java.lang.String strSourceDICOMDIRPath,
java.lang.String strSecureDICOMDIRPath,
EnumProfileAlgorithm enumProfileAlgorithm,
byte[] objKey,
byte[] objIV)
This method encrypts the DICOMDIR file set and generates secure dicom file-set.
|