8 lines
292 B
Plaintext
8 lines
292 B
Plaintext
// TODO: Variants with fields need more thought to see if they can be implemented in languages
|
|
// TODO: that may not do it well, or at all
|
|
enum EncryptionMode {
|
|
None
|
|
// TODO: The »EncryptionAlgorithm« would be the kind for the »Encrypt« variant
|
|
Encrypt(EncryptionAlgorithm)
|
|
}
|