Package org.apache.commons.codec.binary

Examples of org.apache.commons.codec.binary.Base64.encodeToString()


                    GSSCredential.ACCEPT_ONLY);
              }
              gssContext = gssManager.createContext(gssCreds);
              byte[] serverToken = gssContext.acceptSecContext(clientToken, 0, clientToken.length);
              if (serverToken != null && serverToken.length > 0) {
                String authenticate = base64.encodeToString(serverToken);
                response.setHeader(KerberosAuthenticator.WWW_AUTHENTICATE,
                                   KerberosAuthenticator.NEGOTIATE + " " + authenticate);
              }
              if (!gssContext.isEstablished()) {
                response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
View Full Code Here


    DataOutputBuffer buf = new DataOutputBuffer();
    obj.write(buf);
    Base64 encoder = new Base64(0, null, true);
    byte[] raw = new byte[buf.getLength()];
    System.arraycopy(buf.getData(), 0, raw, 0, buf.getLength());
    return encoder.encodeToString(raw);
  }
 
  /**
   * Modify the writable to the value from the newValue
   * @param obj the object to read into
View Full Code Here

          gssContext.requestMutualAuth(true);

          byte[] inToken = new byte[0];
          byte[] outToken = gssContext.initSecContext(inToken, 0, inToken.length);
          Base64 base64 = new Base64(0);
          return base64.encodeToString(outToken);

        } finally {
          if (gssContext != null) {
            gssContext.dispose();
          }
View Full Code Here

  private String createPemCertificate(X509Certificate certificate) throws CertificateException {
    final StringBuilder sb = new StringBuilder();
    final Base64 b64 = new Base64(64);

    sb.append("-----BEGIN CERTIFICATE-----\r\n");
    sb.append(b64.encodeToString(certificate.getEncoded()));
    sb.append("-----END CERTIFICATE-----\r\n");
    return sb.toString();
  }

  private KeyPairGenerator createKeyGenerator() throws CertificateException {
View Full Code Here

            GSSContext gssContext = null;
            try {
              gssContext = gssManager.createContext((GSSCredential) null);
              byte[] serverToken = gssContext.acceptSecContext(clientToken, 0, clientToken.length);
              if (serverToken != null && serverToken.length > 0) {
                String authenticate = base64.encodeToString(serverToken);
                response.setHeader(KerberosAuthenticator.WWW_AUTHENTICATE,
                                   KerberosAuthenticator.NEGOTIATE + " " + authenticate);
              }
              if (!gssContext.isEstablished()) {
                response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
View Full Code Here

          gssContext.requestMutualAuth(true);

          byte[] inToken = new byte[0];
          byte[] outToken = gssContext.initSecContext(inToken, 0, inToken.length);
          Base64 base64 = new Base64(0);
          return base64.encodeToString(outToken);

        } finally {
          if (gssContext != null) {
            gssContext.dispose();
          }
View Full Code Here

          gssContext.requestMutualAuth(true);

          byte[] inToken = new byte[0];
          byte[] outToken = gssContext.initSecContext(inToken, 0, inToken.length);
          Base64 base64 = new Base64(0);
          return base64.encodeToString(outToken);

        } finally {
          if (gssContext != null) {
            gssContext.dispose();
          }
View Full Code Here

    DataOutputBuffer buf = new DataOutputBuffer();
    obj.write(buf);
    Base64 encoder = new Base64(0, null, true);
    byte[] raw = new byte[buf.getLength()];
    System.arraycopy(buf.getData(), 0, raw, 0, buf.getLength());
    return encoder.encodeToString(raw);
  }
 
  /**
   * Modify the writable to the value from the newValue
   * @param obj the object to read into
View Full Code Here

      Cipher cipher = getCiperInternal(Cipher.ENCRYPT_MODE, key);
      byte[] encryptedBytes = cipher.doFinal(clearBytes);

      Base64 base64 = new Base64(0); // 0 - no chunking
      return salt + base64.encodeToString(encryptedBytes);
   }

   /**
    * Decrypt the encrypted text against given secret key.
    *
 
View Full Code Here

    DataOutputBuffer buf = new DataOutputBuffer();
    obj.write(buf);
    Base64 encoder = new Base64(0, null, true);
    byte[] raw = new byte[buf.getLength()];
    System.arraycopy(buf.getData(), 0, raw, 0, buf.getLength());
    return encoder.encodeToString(raw);
  }
 
  /**
   * Modify the writable to the value from the newValue
   * @param obj the object to read into
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.