📄 pgpsecurityprovider.java
字号:
/* * $Id: PGPSecurityProvider.java 11964 2008-06-05 19:31:23Z dfeist $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.module.pgp;import org.mule.api.lifecycle.InitialisationException;import org.mule.api.security.Authentication;import org.mule.api.security.SecurityContext;import org.mule.api.security.SecurityContextFactory;import org.mule.api.security.SecurityException;import org.mule.api.security.SecurityProvider;import org.mule.api.security.UnauthorisedException;import org.mule.api.security.UnknownAuthenticationTypeException;import org.mule.config.i18n.CoreMessages;import org.mule.module.pgp.i18n.PGPMessages;import cryptix.message.Message;import cryptix.message.MessageException;import cryptix.message.SignedMessage;import cryptix.pki.KeyBundle;public class PGPSecurityProvider implements SecurityProvider{ private String name = "PGPSecurityProvider"; private PGPKeyRing keyManager; private SecurityContextFactory factory; /* * (non-Javadoc) * * @see org.mule.api.security.SecurityProvider#setName(java.lang.String) */ public void setName(String name) { this.name = name; } /* * (non-Javadoc) * * @see org.mule.api.security.SecurityProvider#getName() */ public String getName() { return name; } /* * (non-Javadoc) * * @see org.mule.api.security.SecurityProvider#authenticate(org.mule.api.security.Authentication) */ public Authentication authenticate(Authentication authentication) throws SecurityException { PGPAuthentication auth = (PGPAuthentication) authentication; String userId = (String) auth.getPrincipal(); if (userId == null) { throw new UnauthorisedException(CoreMessages.objectIsNull("UserId")); } KeyBundle userKeyBundle = keyManager.getKeyBundle(userId); if (userKeyBundle == null) { throw new UnauthorisedException(PGPMessages.noPublicKeyForUser(userId)); } Message msg = (Message) auth.getCredentials(); if (!((msg != null) && msg instanceof SignedMessage)) { throw new UnauthorisedException(PGPMessages.noSignedMessageFound()); } try { if (!((SignedMessage) msg).verify(userKeyBundle)) { throw new UnauthorisedException(PGPMessages.invalidSignature()); } } catch (MessageException e) { throw new UnauthorisedException(PGPMessages.errorVerifySignature(), e); } auth.setAuthenticated(true); auth.setDetails(userKeyBundle); return auth; } /* * (non-Javadoc) * * @see org.mule.api.security.SecurityProvider#supports(java.lang.Class) */ public boolean supports(Class aClass) { return PGPAuthentication.class.isAssignableFrom(aClass); } /* * (non-Javadoc) * * @see org.mule.api.security.SecurityProvider#createSecurityContext(org.mule.api.security.Authentication) */ public SecurityContext createSecurityContext(Authentication auth) throws UnknownAuthenticationTypeException { return factory.create(auth); } public void initialise() throws InitialisationException { try { java.security.Security.addProvider(new cryptix.jce.provider.CryptixCrypto()); java.security.Security.addProvider(new cryptix.openpgp.provider.CryptixOpenPGP()); factory = new PGPSecurityContextFactory(); } catch (Exception e) { throw new InitialisationException(CoreMessages.failedToCreate("PGPProvider"), e, this); } } public PGPKeyRing getKeyManager() { return keyManager; } public void setKeyManager(PGPKeyRing keyManager) { this.keyManager = keyManager; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -