Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8730731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T09:05:05+00:00 2026-06-13T09:05:05+00:00

Im trying to create consumer secret / key pairs in my scala play application

  • 0

Im trying to create consumer secret / key pairs in my scala play application but i cant seem to get it to work correctly.
I have the following code

import org.apache.commons.codec.binary.Base64
import javax.crypto.{KeyGenerator, Mac, SecretKey}
import javax.crypto.spec.SecretKeySpec

def hmacSha1(baseString:String) : String = {
    val MAC_NAME = "HmacSHA1"
    val keygen = KeyGenerator.getInstance(MAC_NAME);
    val macKey = keygen.generateKey();
    val mac = Mac.getInstance(MAC_NAME);
    val secret = new SecretKeySpec(macKey.getEncoded(), mac.getAlgorithm());
    mac.init(secret);
    val digest = mac.doFinal(s.getBytes());
    val result= new binary.Base64().encode(digest)
    result.toString
}

but when i add in the baseString for something like “Anthony” I always get back a string that looks something like this

"[B@2008bf02" 

where as i was hoping to get something that looks more like this

“w/FdJ7y1qwe3HX/VmPiACTn01Zc=“ 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T09:05:07+00:00Added an answer on June 13, 2026 at 9:05 am

    You are not converting the encoded byte array to a string correctly. The Base64 class has a method to help you. Just do this:

        mac.init(secret);
        val digest = mac.doFinal(s.getBytes());
        new binary.Base64().encodeBase64String(digest);
    }
    

    The more traditional way would be:

        mac.init(secret);
        val digest = mac.doFinal(s.getBytes());
        val result= new binary.Base64().encode(digest)
        new String(result, "ASCII");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to create a new Dedicated Cache Role in Windows Azure but get the
I'm trying to integrate twitter to my app, but I can't seem to get
Right now I am trying to create a producer/consumer thread, the producer thread goes
Trying to create a black line in my view to separate text blocks but
I am trying to solve a consumer/producer problem, and I have to create three
require(twitteroauth/twitteroauth.php); session_start(); //Site Account $siteauth = new TwitterOAuth('{Consumer key}', '{Consumer secret}', '{Access token}', '{Access
I am trying to create instance of AccessToken but its raising exception message. I
I am trying to create oauth signature. But I dont know what I am
I am trying to create a sample JMS application using Eclipse IDE. I have
I'm trying to create an authenticated HTTP service endpoint by using shared secret. A

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.