]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - crypt/crypt.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / crypt / crypt.h
index 54682e8904ce6183c795394735e34162d8d4fed1..e29e1ef8b786225af643ec21acfe6bb690a7de26 100644 (file)
@@ -1,22 +1,21 @@
 /*
  * UFC-crypt: ultra fast crypt(3) implementation
  *
- * Copyright (C) 1991, 92, 93, 96, 97, 98, 2000 Free Software Foundation, Inc.
+ * Copyright (C) 1991-2016 Free Software Foundation, Inc.
  *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
+ * The GNU C Library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
+ * version 2.1 of the License, or (at your option) any later version.
  *
- * This library is distributed in the hope that it will be useful,
+ * The GNU C Library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
+ * Lesser General Public License for more details.
  *
- * You should have received a copy of the GNU Library General Public
- * License along with the GNU C Library; see the file COPYING.LIB.  If not,
- * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with the GNU C Library; if not, see
+ * <http://www.gnu.org/licenses/>.
  *
  * @(#)crypt.h 1.5 12/20/96
  *
 __BEGIN_DECLS
 
 /* Encrypt at most 8 characters from KEY using salt to perturb DES.  */
-extern char *crypt (__const char *__key, __const char *__salt) __THROW;
+extern char *crypt (const char *__key, const char *__salt)
+     __THROW __nonnull ((1, 2));
 
 /* Setup DES tables according KEY.  */
-extern void setkey (__const char *__key) __THROW;
+extern void setkey (const char *__key) __THROW __nonnull ((1));
 
 /* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
    block in place.  */
-extern void encrypt (char *__block, int __edflag) __THROW;
+extern void encrypt (char *__glibc_block, int __edflag)
+     __THROW __nonnull ((1));
 
 #ifdef __USE_GNU
 /* Reentrant versions of the functions above.  The additional argument
@@ -56,14 +57,17 @@ struct crypt_data
     int  direction, initialized;
   };
 
-extern char *crypt_r (__const char *__key, __const char *__salt,
-                     struct crypt_data * __restrict __data) __THROW;
+extern char *crypt_r (const char *__key, const char *__salt,
+                     struct crypt_data * __restrict __data)
+     __THROW __nonnull ((1, 2, 3));
 
-extern void setkey_r (__const char *__key,
-                     struct crypt_data * __restrict __data) __THROW;
+extern void setkey_r (const char *__key,
+                     struct crypt_data * __restrict __data)
+     __THROW __nonnull ((1, 2));
 
-extern void encrypt_r (char *__block, int __edflag,
-                      struct crypt_data * __restrict __data) __THROW;
+extern void encrypt_r (char *__glibc_block, int __edflag,
+                      struct crypt_data * __restrict __data)
+     __THROW __nonnull ((1, 3));
 #endif
 
 __END_DECLS