io.nats.client.impl.StringAuthHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnats Show documentation
Show all versions of jnats Show documentation
Client library for working with the NATS messaging system.
// Copyright 2018 The NATS Authors
// Licensed 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 io.nats.client.impl;
import io.nats.client.AuthHandler;
import io.nats.client.NKey;
class StringAuthHandler implements AuthHandler {
private final char[] nkey;
private final char[] jwt;
StringAuthHandler(char[] jwt, char[] nkey) {
this.jwt = jwt;
this.nkey = nkey;
}
/**
* Sign is called by the library when the server sends a nonce.
* The client's NKey should be used to sign the provided value.
*
* @param nonce the nonce to sign
* @return the signature for the nonce
*/
public byte[] sign(byte[] nonce) {
try {
NKey nkey = NKey.fromSeed(this.nkey);
byte[] sig = nkey.sign(nonce);
nkey.clear();
return sig;
} catch (Exception exp) {
throw new IllegalStateException("problem signing nonce", exp);
}
}
/**
* getID should return a public key associated with a client key known to the server.
* If the server is not in nonce-mode, this array can be empty.
*
* @return the public key as a char array
*/
public char[] getID() {
try {
NKey nkey = NKey.fromSeed(this.nkey);
char[] pubKey = nkey.getPublicKey();
nkey.clear();
return pubKey;
} catch (Exception exp) {
throw new IllegalStateException("problem getting public key", exp);
}
}
/**
* getJWT should return the user JWT associated with this connection.
* This can return null for challenge only authentication, but for account/user
* JWT-based authentication you need to return the JWT bytes here.
*
* @return the user JWT
*/
public char[] getJWT() {
return this.jwt;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy