Guest User

Untitled

a guest
Jun 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. pub enum Message {
  2. Encrypted {
  3. ciphertext: String,
  4. hmac: String,
  5. iv: String,
  6. },
  7. Unencrypted {
  8. cleartext: String,
  9. },
  10. }
  11.  
  12. fn log_cleartext(m: &Message) {
  13. println!("Message cleartext: {}", m.cleartext);
  14. }
  15.  
  16.  
  17. fn main() {
  18. println!("Hello, world!");
  19. }
Add Comment
Please, Sign In to add comment