Java Code Examples for org.apache.pulsar.broker.authentication.utils.AuthTokenUtils#createSecretKey()
The following examples show how to use
org.apache.pulsar.broker.authentication.utils.AuthTokenUtils#createSecretKey() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AuthenticationProviderTokenTest.java From pulsar with Apache License 2.0 | 6 votes |
@Test public void testSerializeSecretKey() { SecretKey secretKey = AuthTokenUtils.createSecretKey(SignatureAlgorithm.HS256); String token = Jwts.builder() .setSubject(SUBJECT) .signWith(secretKey) .compact(); @SuppressWarnings("unchecked") Jwt<?, Claims> jwt = Jwts.parser() .setSigningKey(AuthTokenUtils.decodeSecretKey(secretKey.getEncoded())) .parse(token); assertNotNull(jwt); assertNotNull(jwt.getBody()); assertEquals(jwt.getBody().getSubject(), SUBJECT); }
Example 2
Source File: AuthenticationProviderTokenTest.java From pulsar with Apache License 2.0 | 6 votes |
@Test(expectedExceptions = AuthenticationException.class) public void testAuthenticateWhenInvalidTokenIsPassed() throws AuthenticationException, IOException { SecretKey secretKey = AuthTokenUtils.createSecretKey(SignatureAlgorithm.HS256); Properties properties = new Properties(); properties.setProperty(AuthenticationProviderToken.CONF_TOKEN_SECRET_KEY, AuthTokenUtils.encodeKeyBase64(secretKey)); ServiceConfiguration conf = new ServiceConfiguration(); conf.setProperties(properties); AuthenticationProviderToken provider = new AuthenticationProviderToken(); provider.initialize(conf); provider.authenticate(new AuthenticationDataSource() { @Override public String getHttpHeader(String name) { return AuthenticationProviderToken.HTTP_HEADER_VALUE_PREFIX + "invalid_token"; } @Override public boolean hasDataFromHttp() { return true; } }); }
Example 3
Source File: AuthenticationProviderTokenTest.java From pulsar with Apache License 2.0 | 5 votes |
@Test public void testAuthSecretKeyFromFile() throws Exception { SecretKey secretKey = AuthTokenUtils.createSecretKey(SignatureAlgorithm.HS256); File secretKeyFile = File.createTempFile("pulsar-test-secret-key-", ".key"); secretKeyFile.deleteOnExit(); Files.write(Paths.get(secretKeyFile.toString()), secretKey.getEncoded()); AuthenticationProviderToken provider = new AuthenticationProviderToken(); Properties properties = new Properties(); properties.setProperty(AuthenticationProviderToken.CONF_TOKEN_SECRET_KEY, "file://" + secretKeyFile.toString()); ServiceConfiguration conf = new ServiceConfiguration(); conf.setProperties(properties); provider.initialize(conf); String token = AuthTokenUtils.createToken(secretKey, SUBJECT, Optional.empty()); // Pulsar protocol auth String subject = provider.authenticate(new AuthenticationDataSource() { @Override public boolean hasDataFromCommand() { return true; } @Override public String getCommandData() { return token; } }); assertEquals(subject, SUBJECT); provider.close(); }
Example 4
Source File: AuthenticationProviderTokenTest.java From pulsar with Apache License 2.0 | 5 votes |
@Test public void testAuthSecretKeyFromValidFile() throws Exception { SecretKey secretKey = AuthTokenUtils.createSecretKey(SignatureAlgorithm.HS256); File secretKeyFile = File.createTempFile("pulsar-test-secret-key-valid", ".key"); secretKeyFile.deleteOnExit(); Files.write(Paths.get(secretKeyFile.toString()), secretKey.getEncoded()); AuthenticationProviderToken provider = new AuthenticationProviderToken(); Properties properties = new Properties(); properties.setProperty(AuthenticationProviderToken.CONF_TOKEN_SECRET_KEY, secretKeyFile.toString()); ServiceConfiguration conf = new ServiceConfiguration(); conf.setProperties(properties); provider.initialize(conf); String token = AuthTokenUtils.createToken(secretKey, SUBJECT, Optional.empty()); // Pulsar protocol auth String subject = provider.authenticate(new AuthenticationDataSource() { @Override public boolean hasDataFromCommand() { return true; } @Override public String getCommandData() { return token; } }); assertEquals(subject, SUBJECT); provider.close(); }
Example 5
Source File: AuthenticationProviderTokenTest.java From pulsar with Apache License 2.0 | 5 votes |
@Test public void testAuthSecretKeyFromDataBase64() throws Exception { SecretKey secretKey = AuthTokenUtils.createSecretKey(SignatureAlgorithm.HS256); AuthenticationProviderToken provider = new AuthenticationProviderToken(); Properties properties = new Properties(); properties.setProperty(AuthenticationProviderToken.CONF_TOKEN_SECRET_KEY, "data:;base64," + AuthTokenUtils.encodeKeyBase64(secretKey)); ServiceConfiguration conf = new ServiceConfiguration(); conf.setProperties(properties); provider.initialize(conf); String token = AuthTokenUtils.createToken(secretKey, SUBJECT, Optional.empty()); // Pulsar protocol auth String subject = provider.authenticate(new AuthenticationDataSource() { @Override public boolean hasDataFromCommand() { return true; } @Override public String getCommandData() { return token; } }); assertEquals(subject, SUBJECT); provider.close(); }
Example 6
Source File: AuthenticationProviderTokenTest.java From pulsar with Apache License 2.0 | 5 votes |
@Test public void testExpiringToken() throws Exception { SecretKey secretKey = AuthTokenUtils.createSecretKey(SignatureAlgorithm.HS256); @Cleanup AuthenticationProviderToken provider = new AuthenticationProviderToken(); Properties properties = new Properties(); properties.setProperty(AuthenticationProviderToken.CONF_TOKEN_SECRET_KEY, AuthTokenUtils.encodeKeyBase64(secretKey)); ServiceConfiguration conf = new ServiceConfiguration(); conf.setProperties(properties); provider.initialize(conf); // Create a token that will expire in 3 seconds String expiringToken = AuthTokenUtils.createToken(secretKey, SUBJECT, Optional.of(new Date(System.currentTimeMillis() + TimeUnit.SECONDS.toMillis(3)))); AuthenticationState authState = provider.newAuthState(AuthData.of(expiringToken.getBytes()), null, null); assertTrue(authState.isComplete()); assertFalse(authState.isExpired()); Thread.sleep(TimeUnit.SECONDS.toMillis(6)); assertTrue(authState.isExpired()); assertTrue(authState.isComplete()); AuthData brokerData = authState.refreshAuthentication(); assertNull(brokerData); }
Example 7
Source File: AuthenticationProviderTokenTest.java From pulsar with Apache License 2.0 | 5 votes |
private static void testTokenAudienceWithDifferentConfig(Properties properties, String audienceClaim, List<String> audiences) throws Exception { @Cleanup AuthenticationProviderToken provider = new AuthenticationProviderToken(); SecretKey secretKey = AuthTokenUtils.createSecretKey(SignatureAlgorithm.HS256); File secretKeyFile = File.createTempFile("pulsar-test-secret-key-valid", ".key"); secretKeyFile.deleteOnExit(); Files.write(Paths.get(secretKeyFile.toString()), secretKey.getEncoded()); properties.setProperty(AuthenticationProviderToken.CONF_TOKEN_SECRET_KEY, secretKeyFile.toString()); ServiceConfiguration conf = new ServiceConfiguration(); conf.setProperties(properties); provider.initialize(conf); String token = createTokenWithAudience(secretKey, audienceClaim, audiences); // Pulsar protocol auth String subject = provider.authenticate(new AuthenticationDataSource() { @Override public boolean hasDataFromCommand() { return true; } @Override public String getCommandData() { return token; } }); assertEquals(subject, SUBJECT); provider.close(); }
Example 8
Source File: TokensCliUtils.java From pulsar with Apache License 2.0 | 5 votes |
public void run() throws IOException { SecretKey secretKey = AuthTokenUtils.createSecretKey(algorithm); byte[] encoded = secretKey.getEncoded(); if (base64) { encoded = Encoders.BASE64.encode(encoded).getBytes(); } if (outputFile != null) { Files.write(Paths.get(outputFile), encoded); } else { System.out.write(encoded); } }
Example 9
Source File: PulsarAuthEnabledTest.java From kop with Apache License 2.0 | 4 votes |
@BeforeClass @Override protected void setup() throws Exception { SecretKey secretKey = AuthTokenUtils.createSecretKey(SignatureAlgorithm.HS256); AuthenticationProviderToken provider = new AuthenticationProviderToken(); Properties properties = new Properties(); properties.setProperty("tokenSecretKey", AuthTokenUtils.encodeKeyBase64(secretKey)); ServiceConfiguration authConf = new ServiceConfiguration(); authConf.setProperties(properties); provider.initialize(authConf); adminToken = AuthTokenUtils.createToken(secretKey, ADMIN_USER, Optional.empty()); super.resetConfig(); ((KafkaServiceConfiguration) conf).setKafkaTenant(TENANT); ((KafkaServiceConfiguration) conf).setKafkaNamespace(NAMESPACE); ((KafkaServiceConfiguration) conf).setKafkaMetadataTenant("internal"); ((KafkaServiceConfiguration) conf).setKafkaMetadataNamespace("__kafka"); ((KafkaServiceConfiguration) conf).setEnableGroupCoordinator(true); conf.setClusterName(CLUSTER_NAME); conf.setAuthorizationEnabled(true); conf.setAuthenticationEnabled(true); conf.setAuthorizationAllowWildcardsMatching(true); conf.setSuperUserRoles(Sets.newHashSet(ADMIN_USER)); conf.setAuthenticationProviders( Sets.newHashSet("org.apache.pulsar.broker.authentication." + "AuthenticationProviderToken")); conf.setBrokerClientAuthenticationPlugin(AuthenticationToken.class.getName()); conf.setBrokerClientAuthenticationParameters("token:" + adminToken); conf.setProperties(properties); super.internalSetup(); admin = spy(PulsarAdmin.builder().serviceHttpUrl(brokerUrl.toString()) .authentication(AuthenticationToken.class.getName(), "token:" + adminToken).build()); admin.tenants().createTenant(TENANT, new TenantInfo(Sets.newHashSet(ADMIN_USER), Sets.newHashSet(CLUSTER_NAME))); admin.namespaces().createNamespace(TENANT + "/" + NAMESPACE); admin.namespaces() .setNamespaceReplicationClusters(TENANT + "/" + NAMESPACE, Sets.newHashSet(CLUSTER_NAME)); admin.topics().createPartitionedTopic(PULSAR_TOPIC_NAME, 1); admin.namespaces().grantPermissionOnNamespace(TENANT + "/" + NAMESPACE, ADMIN_USER, Sets.newHashSet(AuthAction.consume, AuthAction.produce)); }
Example 10
Source File: SaslPlainTest.java From kop with Apache License 2.0 | 4 votes |
@BeforeClass @Override protected void setup() throws Exception { SecretKey secretKey = AuthTokenUtils.createSecretKey(SignatureAlgorithm.HS256); AuthenticationProviderToken provider = new AuthenticationProviderToken(); Properties properties = new Properties(); properties.setProperty("tokenSecretKey", AuthTokenUtils.encodeKeyBase64(secretKey)); ServiceConfiguration authConf = new ServiceConfiguration(); authConf.setProperties(properties); provider.initialize(authConf); userToken = AuthTokenUtils.createToken(secretKey, SIMPLE_USER, Optional.empty()); adminToken = AuthTokenUtils.createToken(secretKey, ADMIN_USER, Optional.empty()); anotherToken = AuthTokenUtils.createToken(secretKey, ANOTHER_USER, Optional.empty()); super.resetConfig(); ((KafkaServiceConfiguration) conf).setEnableGroupCoordinator(true); ((KafkaServiceConfiguration) conf).setSaslAllowedMechanisms(Sets.newHashSet("PLAIN")); ((KafkaServiceConfiguration) conf).setKafkaMetadataTenant("internal"); ((KafkaServiceConfiguration) conf).setKafkaMetadataNamespace("__kafka"); conf.setClusterName(CLUSTER_NAME); conf.setAuthorizationEnabled(true); conf.setAuthenticationEnabled(true); conf.setAuthorizationAllowWildcardsMatching(true); conf.setSuperUserRoles(Sets.newHashSet(ADMIN_USER)); conf.setAuthenticationProviders( Sets.newHashSet("org.apache.pulsar.broker.authentication." + "AuthenticationProviderToken")); conf.setBrokerClientAuthenticationPlugin(AuthenticationToken.class.getName()); conf.setBrokerClientAuthenticationParameters("token:" + adminToken); conf.setProperties(properties); super.internalSetup(); admin = spy(PulsarAdmin.builder().serviceHttpUrl(brokerUrl.toString()) .authentication(AuthenticationToken.class.getName(), "token:" + adminToken).build()); admin.tenants().createTenant(TENANT, new TenantInfo(Sets.newHashSet(ADMIN_USER), Sets.newHashSet(CLUSTER_NAME))); admin.namespaces().createNamespace(TENANT + "/" + NAMESPACE); admin.topics().createPartitionedTopic(PULSAR_TOPIC_NAME, 1); admin .namespaces().grantPermissionOnNamespace(TENANT + "/" + NAMESPACE, SIMPLE_USER, Sets.newHashSet(AuthAction.consume, AuthAction.produce)); }