]> git.saurik.com Git - apple/xnu.git/blobdiff - EXTERNAL_HEADERS/corecrypto/ccdes.h
xnu-7195.60.75.tar.gz
[apple/xnu.git] / EXTERNAL_HEADERS / corecrypto / ccdes.h
index b4925bd144abc424c0d09bc2939afbe96e3b57ba..3441ded70861a197c5b00bd090d3c8a9ddbd67dc 100644 (file)
@@ -1,11 +1,12 @@
-/*
- *  ccdes.h
- *  corecrypto
- *
- *  Created on 12/20/2010
- *
- *  Copyright (c) 2010,2012,2015 Apple Inc. All rights reserved.
+/* Copyright (c) (2010,2012,2015,2016,2017,2018,2019) Apple Inc. All rights reserved.
  *
+ * corecrypto is licensed under Apple Inc.’s Internal Use License Agreement (which
+ * is contained in the License.txt file distributed with corecrypto) and only to 
+ * people who accept that license. IMPORTANT:  Any license rights granted to you by 
+ * Apple Inc. (if any) are limited to internal use within your organization only on 
+ * devices and computers you own or control, for the sole purpose of verifying the 
+ * security characteristics and correct functioning of the Apple Software.  You may 
+ * not, directly or indirectly, redistribute the Apple Software or any portions thereof.
  */
 
 
 #define CCDES_BLOCK_SIZE 8
 #define CCDES_KEY_SIZE 8
 
-extern const struct ccmode_ecb ccdes_ltc_ecb_decrypt_mode;
-extern const struct ccmode_ecb ccdes_ltc_ecb_encrypt_mode;
-
 extern const struct ccmode_ecb ccdes3_ltc_ecb_decrypt_mode;
 extern const struct ccmode_ecb ccdes3_ltc_ecb_encrypt_mode;
-extern const struct ccmode_ecb ccdes168_ltc_ecb_encrypt_mode;
 
 const struct ccmode_ecb *ccdes_ecb_decrypt_mode(void);
 const struct ccmode_ecb *ccdes_ecb_encrypt_mode(void);
@@ -61,8 +58,8 @@ int ccdes_key_is_weak( void *key, size_t  length);
 void ccdes_key_set_odd_parity(void *key, size_t length);
 
 uint32_t
-ccdes_cbc_cksum(void *in, void *out, size_t length,
-                void *key, size_t keylen, void *ivec);
+ccdes_cbc_cksum(const void *in, void *out, size_t length,
+                const void *key, size_t key_nbytes, const void *ivec);
 
 
 #endif /* _CORECRYPTO_CCDES_H_ */