All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.paho.client.mqttv3.internal.websocket.Base64 Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2009, 2014 IBM Corp.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v1.0 which accompany this distribution. 
 *
 * The Eclipse Public License is available at 
 *    http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at 
 *   http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * Contributors:
 *    James Sutton - Bug 459142 - WebSocket support for the Java client.
 */
package org.eclipse.paho.client.mqttv3.internal.websocket;

import java.util.prefs.AbstractPreferences;
import java.util.prefs.BackingStoreException;

public class Base64 {
	
	private static final Base64 instance = new Base64();
	private static final Base64Encoder encoder = instance.new Base64Encoder();
	
	public static String encode (String s){
		encoder.putByteArray("akey", s.getBytes());
		String result = encoder.getBase64String();
		return result;
	}
	
	public static String encodeBytes (byte[] b){
		encoder.putByteArray("aKey", b);
		String result = encoder.getBase64String();
		return result;
		
	}
	
	public class Base64Encoder extends AbstractPreferences {

		private String base64String = null;
		
		public Base64Encoder() {
			super(null, "");
		}

		
		protected void putSpi(String key, String value) {
			base64String = value;	
		}
		
		public String getBase64String() {
			return base64String;
		}

		
		protected String getSpi(String key) {
			return null;
		}

		
		protected void removeSpi(String key) {
		}

		
		protected void removeNodeSpi() throws BackingStoreException {
			
		}

		
		protected String[] keysSpi() throws BackingStoreException {
			return null;
		}

		
		protected String[] childrenNamesSpi() throws BackingStoreException {
			return null;
		}

		
		protected AbstractPreferences childSpi(String name) {
			return null;
		}

		
		protected void syncSpi() throws BackingStoreException {
			
		}

		
		protected void flushSpi() throws BackingStoreException {
			
		}
	
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy