mapfile-vers revision 67e3a03ed4a2813074d36330f062ed6e593a4937
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# CDDL HEADER START
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# The contents of this file are subject to the terms of the
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# Common Development and Distribution License (the "License").
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# You may not use this file except in compliance with the License.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# or http://www.opensolaris.org/os/licensing.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# See the License for the specific language governing permissions
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# and limitations under the License.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# When distributing Covered Code, include this CDDL HEADER in each
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# If applicable, add the following below this CDDL HEADER, with the
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# fields enclosed by brackets "[]" replaced with your own identifying
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# information: Portions Copyright [yyyy] [name of copyright owner]
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# CDDL HEADER END
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# Use is subject to license terms.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# ident "%Z%%M% %I% %E% SMI"
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# Note:
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# SHA256Update, SHA384Update, and SHA512Update are all
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# weak aliases for SHA2Update.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# SHA256Final, SHA384Final, and SHA512Final are all
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# weak aliases for SHA2Final
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# We use NODYNSORT to keep the weak aliases out of the .SUNW_dymsymsort
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster# ELF section. As a result, ld will put the two main symbols in.
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster#
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster
8af80418ba1ec431c8027fa9668e5678658d3611Allan FosterSUNW_1.1 {
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster global:
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster MD4Final;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster MD4Init;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster MD4Update;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster md5_calc;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster MD5Final = NODIRECT; # Address interposition from testsuite
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster MD5Init = NODIRECT; # Address interposition from testsuite
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster MD5Update = NODIRECT; # Address interposition from testsuite
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA1Final;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA1Init;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA1Update;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA256Final = NODYNSORT;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA256Init;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA256Update = NODYNSORT;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA2Final;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA2Init;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA2Update;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA384Final = NODYNSORT;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA384Init;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA384Update = NODYNSORT;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA512Final = NODYNSORT;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA512Init;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster SHA512Update = NODYNSORT;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster local:
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster *;
8af80418ba1ec431c8027fa9668e5678658d3611Allan Foster};