]> git.proxmox.com Git - mirror_edk2.git/blobdiff - CryptoPkg/Library/BaseCryptLib/Cipher/CryptArc4.c
CryptoPkg: Clean up source files
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / Cipher / CryptArc4.c
index f3c4d31a2d9c1598fd7f295fc187f28fe2bf57ed..3064c443817a047d919877446a8de9fd6be3ca4c 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   ARC4 Wrapper Implementation over OpenSSL.\r
 \r
-Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
@@ -66,7 +66,7 @@ Arc4Init (
 \r
   //\r
   // Check input parameters.\r
-  //  \r
+  //\r
   if (Arc4Context == NULL || Key == NULL || (KeySize < 5 || KeySize > 256)) {\r
     return FALSE;\r
   }\r
@@ -202,7 +202,7 @@ Arc4Reset (
   if (Arc4Context == NULL) {\r
     return FALSE;\r
   }\r
-  \r
+\r
   Rc4Key = (RC4_KEY *) Arc4Context;\r
 \r
   CopyMem (Rc4Key, Rc4Key + 1, sizeof (RC4_KEY));\r