maskit commented on a change in pull request #2888: PIP-25: Token based authentication URL: https://github.com/apache/pulsar/pull/2888#discussion_r233496276
########## File path: pulsar-broker/src/main/java/org/apache/pulsar/utils/auth/tokens/TokensCliUtils.java ########## @@ -0,0 +1,222 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.apache.pulsar.utils.auth.tokens; + +import com.beust.jcommander.JCommander; +import com.beust.jcommander.Parameter; +import com.beust.jcommander.Parameters; +import com.google.common.base.Charsets; + +import io.jsonwebtoken.SignatureAlgorithm; +import io.jsonwebtoken.io.Decoders; +import io.jsonwebtoken.security.Keys; + +import java.io.BufferedReader; +import java.io.InputStreamReader; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.security.Key; +import java.security.KeyPair; +import java.util.Date; +import java.util.Optional; +import java.util.concurrent.TimeUnit; + +import lombok.Cleanup; + +import org.apache.pulsar.broker.authentication.utils.AuthTokenUtils; +import org.apache.pulsar.common.util.RelativeTimeUtil; + +public class TokensCliUtils { + + public static class Arguments { + @Parameter(names = { "-h", "--help" }, description = "Show this help message") + private boolean help = false; + } + + @Parameters(commandDescription = "Create a new secret key") + public static class CommandCreateSecretKey { + @Parameter(names = { "-a", + "--signature-algorithm" }, description = "The signature algorithm for the new secret key.") + SignatureAlgorithm algorithm = SignatureAlgorithm.HS256; + + public void run() { + System.out.println("secret-key " + AuthTokenUtils.createSecretKey(algorithm)); + } + } + + @Parameters(commandDescription = "Create a new or pair of keys public/private") + public static class CommandCreateKeyPair { + @Parameter(names = { "-a", + "--signature-algorithm" }, description = "The signature algorithm for the new key pair.") + SignatureAlgorithm algorithm = SignatureAlgorithm.RS256; + + public void run() { + KeyPair pair = Keys.keyPairFor(algorithm); + System.out.println("public-key " + AuthTokenUtils.encodeKey(pair.getPublic())); + System.out.println("private-key " + AuthTokenUtils.encodeKey(pair.getPrivate())); + } + } + + @Parameters(commandDescription = "Create a new token") + public static class CommandCreateToken { + + @Parameter(names = { "-s", + "--subject" }, description = "Specify the 'subject' or 'principal' associate with this token", required = true) + private String subject; + + @Parameter(names = { "-e", + "--expiry-time" }, description = "Relative expiry time for the token (eg: 1h, 3d, 10y). (m=minutes) Default: no expiration") + private String expiryTime; + + @Parameter(names = { "-i", + "--stdin" }, description = "Read secret key from standard input") + private Boolean stdin = false; + + @Parameter(names = { "-pk" }, description = "Indicate the key is ") Review comment: the key is ... a private key? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
