171269a22SAnthony Scarpino# 271269a22SAnthony Scarpino# CDDL HEADER START 371269a22SAnthony Scarpino# 471269a22SAnthony Scarpino# The contents of this file are subject to the terms of the 571269a22SAnthony Scarpino# Common Development and Distribution License (the "License"). 671269a22SAnthony Scarpino# You may not use this file except in compliance with the License. 771269a22SAnthony Scarpino# 871269a22SAnthony Scarpino# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 971269a22SAnthony Scarpino# or http://www.opensolaris.org/os/licensing. 1071269a22SAnthony Scarpino# See the License for the specific language governing permissions 1171269a22SAnthony Scarpino# and limitations under the License. 1271269a22SAnthony Scarpino# 1371269a22SAnthony Scarpino# When distributing Covered Code, include this CDDL HEADER in each 1471269a22SAnthony Scarpino# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 1571269a22SAnthony Scarpino# If applicable, add the following below this CDDL HEADER, with the 1671269a22SAnthony Scarpino# fields enclosed by brackets "[]" replaced with your own identifying 1771269a22SAnthony Scarpino# information: Portions Copyright [yyyy] [name of copyright owner] 1871269a22SAnthony Scarpino# 1971269a22SAnthony Scarpino# CDDL HEADER END 2071269a22SAnthony Scarpino# 2171269a22SAnthony Scarpino# 22*bfed486aSAli Bahrami# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 2371269a22SAnthony Scarpino# Use is subject to license terms. 2471269a22SAnthony Scarpino# 2571269a22SAnthony Scarpino 26*bfed486aSAli Bahrami# 27*bfed486aSAli Bahrami# MAPFILE HEADER START 28*bfed486aSAli Bahrami# 29*bfed486aSAli Bahrami# WARNING: STOP NOW. DO NOT MODIFY THIS FILE. 30*bfed486aSAli Bahrami# Object versioning must comply with the rules detailed in 31*bfed486aSAli Bahrami# 32*bfed486aSAli Bahrami# usr/src/lib/README.mapfiles 33*bfed486aSAli Bahrami# 34*bfed486aSAli Bahrami# You should not be making modifications here until you've read the most current 35*bfed486aSAli Bahrami# copy of that file. If you need help, contact a gatekeeper for guidance. 36*bfed486aSAli Bahrami# 37*bfed486aSAli Bahrami# MAPFILE HEADER END 38*bfed486aSAli Bahrami# 39*bfed486aSAli Bahrami 4071269a22SAnthony Scarpino 4171269a22SAnthony ScarpinoSUNWprivate { 4271269a22SAnthony Scarpino global: 4371269a22SAnthony Scarpino aes_alloc_keysched; 4471269a22SAnthony Scarpino aes_copy_block; 4571269a22SAnthony Scarpino aes_decrypt_block; 4671269a22SAnthony Scarpino aes_decrypt_contiguous_blocks; 4771269a22SAnthony Scarpino aes_encrypt_block; 4871269a22SAnthony Scarpino aes_encrypt_contiguous_blocks; 4971269a22SAnthony Scarpino aes_init_keysched; 5071269a22SAnthony Scarpino arcfour_crypt; 5171269a22SAnthony Scarpino arcfour_key_init; 5271269a22SAnthony Scarpino big_One; 5371269a22SAnthony Scarpino big_Two; 5471269a22SAnthony Scarpino big_add; 5571269a22SAnthony Scarpino big_bitlength; 5671269a22SAnthony Scarpino big_cmp_abs; 5771269a22SAnthony Scarpino big_copy; 5871269a22SAnthony Scarpino big_div_pos; 5971269a22SAnthony Scarpino big_ext_gcd_pos; 6071269a22SAnthony Scarpino big_extend; 6171269a22SAnthony Scarpino big_finish; 6271269a22SAnthony Scarpino big_init1; 6371269a22SAnthony Scarpino big_init; 6471269a22SAnthony Scarpino big_modexp; 6571269a22SAnthony Scarpino big_modexp_crt; 6671269a22SAnthony Scarpino big_mul; 6771269a22SAnthony Scarpino big_nextprime_pos; 6871269a22SAnthony Scarpino big_sub; 6971269a22SAnthony Scarpino big_sub_pos; 7071269a22SAnthony Scarpino bignum2bytestring; 7171269a22SAnthony Scarpino blowfish_alloc_keysched; 7271269a22SAnthony Scarpino blowfish_decrypt_contiguous_blocks; 7371269a22SAnthony Scarpino blowfish_encrypt_contiguous_blocks; 7471269a22SAnthony Scarpino blowfish_init_keysched; 7571269a22SAnthony Scarpino bytestring2bignum; 7671269a22SAnthony Scarpino ctr_mode_final; 7771269a22SAnthony Scarpino ctr_init_ctx; 7871269a22SAnthony Scarpino des3_crunch_block; 7971269a22SAnthony Scarpino des_alloc_keysched; 8071269a22SAnthony Scarpino des_crunch_block; 8171269a22SAnthony Scarpino des_decrypt_contiguous_blocks; 8271269a22SAnthony Scarpino des_encrypt_contiguous_blocks; 8371269a22SAnthony Scarpino des_init_keysched; 8471269a22SAnthony Scarpino des_keycheck; 8571269a22SAnthony Scarpino local: 8671269a22SAnthony Scarpino *; 8771269a22SAnthony Scarpino}; 88