George is writing an application in Java and is using DES in the code to implement the encryption
and decryption of data that will be passed. In the following code snippet, what will be
accomplished?
FileOutputStream out = newFileOutputStream
(f);
out.write(rawkey);
A.
Convert the secret key to an array of bytes
B.
Generate a secret TripleDES encryption key
C.
Writes the raw key to a file
D.
Send the raw key to a decryption output array
Explanation: