2N/A/*
2N/A * CDDL HEADER START
2N/A *
2N/A * The contents of this file are subject to the terms of the
2N/A * Common Development and Distribution License, Version 1.0 only
2N/A * (the "License"). You may not use this file except in compliance
2N/A * with the License.
2N/A *
2N/A * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2N/A * or http://www.opensolaris.org/os/licensing.
2N/A * See the License for the specific language governing permissions
2N/A * and limitations under the License.
2N/A *
2N/A * When distributing Covered Code, include this CDDL HEADER in each
2N/A * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2N/A * If applicable, add the following below this CDDL HEADER, with the
2N/A * fields enclosed by brackets "[]" replaced with your own identifying
2N/A * information: Portions Copyright [yyyy] [name of copyright owner]
2N/A *
2N/A * CDDL HEADER END
2N/A */
2N/A/*
2N/A * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
2N/A * Use is subject to license terms.
2N/A */
2N/A
2N/A/* #ident "%Z%%M% %I% %E% SMI" */
2N/A
2N/A/*
2N/A * The formal definition of OIDs comes from ITU-T recommendation X.208
2N/A */
2N/Aconst WBKU_AES_128_OID = "2.16.840.1.101.3.4.1.2";
2N/Aconst WBKU_DES3_OID = "1.3.6.1.4.1.4929.1.8";
2N/Aconst WBKU_HMAC_SHA1_OID = "1.3.6.1.5.5.8.1.2";
2N/Aconst WBKU_RSA_OID = "1.2.840.113549.1.1.1";
2N/A
2N/Aconst WBKU_MAX_KEYLEN = 1024;
2N/A
2N/Astruct wbku_key {
2N/A bool wk_master;
2N/A string wk_oid<>;
2N/A opaque KEYDATA<WBKU_MAX_KEYLEN>;
2N/A};
2N/A
2N/A#ifdef RPC_HDR
2N/A%#define wk_key_len KEYDATA.KEYDATA_len
2N/A%#define wk_key_val KEYDATA.KEYDATA_val
2N/A#endif /* RPC_HDR */
2N/A
2N/A/*
2N/A * Allow one entry for each key that can be in a keystore at
2N/A * the same time. There can be one AES key, one 3DES key,
2N/A * two HMAC SHA-1 values (one master and one for the client) and one RSA
2N/A * private key. The master key is a HMAC SHA-1 master key used to
2N/A * derive a per-client HMAC SHA-1 key as described in RFC 3118, Appendix A.
2N/A */
2N/Atypedef struct wbku_key wbku_keystore<5>;