Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dc29608fbcbfb811a5a1d1ae5203682a3950fc79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*******************************************************************************
 * Copyright (c) 2010, 2011 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.win32;


public class CERT_PUBLIC_KEY_INFO {
	 public CRYPT_ALGORITHM_IDENTIFIER Algorithm = new CRYPT_ALGORITHM_IDENTIFIER ();
	 public CRYPT_BIT_BLOB PublicKey = new CRYPT_BIT_BLOB ();

	 static final public int sizeof = OS.CERT_PUBLIC_KEY_INFO_sizeof ();
}

Back to the top