/* * oxAuth is available under the MIT License (2008). See http://opensource.org/licenses/MIT for full text. * * Copyright (c) 2014, Gluu */ package org.xdi.oxauth.model.crypto.signature; /** * @author Javier Rojas Blum * @version 0.9 December 9, 2014 */ public interface SignatureAlgorithmFamily { public static final String HMAC = "HMAC"; public static final String RSA = "RSA"; public static final String EC = "EC"; }