crypt.x (9524e274b5484ac8b43bacd90d4029183ccf6476) | crypt.x (5b31cc94b10d4bb7109c6b27940a0fc76a44a331) |
---|---|
1/* 2 * Copyright (c) 1996 3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 16 unchanged lines hidden (view full) --- 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 */ 32 | 1/* 2 * Copyright (c) 1996 3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 16 unchanged lines hidden (view full) --- 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 */ 32 |
33#ifndef RPC_HDR 34%#include <sys/cdefs.h> 35#endif 36 | |
37/* 38 * This protocol definition exists because of the U.S. government and 39 * its stupid export laws. We can't export DES code from the United 40 * States to other countries (even though the code already exists 41 * outside the U.S. -- go figure that one out) but we need to make 42 * Secure RPC work. The normal way around this is to break the DES 43 * code out into a shared library; we can then provide a dummy lib 44 * in the base OS and provide the real lib in the secure dist, which --- 42 unchanged lines hidden --- | 33/* 34 * This protocol definition exists because of the U.S. government and 35 * its stupid export laws. We can't export DES code from the United 36 * States to other countries (even though the code already exists 37 * outside the U.S. -- go figure that one out) but we need to make 38 * Secure RPC work. The normal way around this is to break the DES 39 * code out into a shared library; we can then provide a dummy lib 40 * in the base OS and provide the real lib in the secure dist, which --- 42 unchanged lines hidden --- |