All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.edu.icm.unity.oauth.as.token.KeyIdExtractor Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2021 Bixbit - Krzysztof Benedyczak. All rights reserved.
 * See LICENCE.txt file for licensing information.
 */

package pl.edu.icm.unity.oauth.as.token;

import java.security.cert.X509Certificate;

public class KeyIdExtractor
{
	public static String getKeyId(X509Certificate cert)
	{
		return cert.getSerialNumber()
				.toString(10);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy