1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21#
22# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25# ident	"%Z%%M%	%I%	%E% SMI"
26#
27
28# Note:
29#
30#	SHA256Update, SHA384Update, and SHA512Update are all
31#	weak aliases for SHA2Update.
32#
33#	SHA256Final, SHA384Final, and SHA512Final are all
34#	weak aliases for SHA2Final
35#
36# We use NODYNSORT to keep the weak aliases out of the .SUNW_dymsymsort
37# ELF section. As a result, ld will put the two main symbols in.
38#
39
40
41SUNW_1.1 {
42    global:
43	MD4Final;
44	MD4Init;
45	MD4Update;
46	md5_calc;
47	MD5Final;
48	MD5Init;
49	MD5Update;
50	SHA1Final;
51	SHA1Init;
52	SHA1Update;
53	SHA256Final =	NODYNSORT;
54	SHA256Init;
55	SHA256Update =	NODYNSORT;
56	SHA2Final;
57	SHA2Init;
58	SHA2Update;
59	SHA384Final =	NODYNSORT;
60	SHA384Init;
61	SHA384Update =	NODYNSORT;
62	SHA512Final =	NODYNSORT;
63	SHA512Init;
64	SHA512Update =	NODYNSORT;
65    local:
66	*;
67};
68