However, the system may warn you the first time you run a Java command-line tool. Running a Java Command-Line Tool for the First Time. When you run a command-line tool for the first time (such as java), depending on which app (such as Safari or Firefox) you used to download the installer, a window may appear with text similar to the following. Java Update For Mac Os X 10.8. To test that Java is installed and working properly on your computer, run this test applet. Install Java on Mac. Download the jre-8u65-macosx-x64.pkg file. Review and agree to the terms of the license agreement before downloading the file. Double-click the.pkg file to launch it; Double-click on the package icon to.
- All Implemented Interfaces:
Cloneable
A MAC provides a way to check the integrity of information transmitted over or stored in an unreliable medium, based on a secret key. Typically, message authentication codes are used between two parties that share a secret key in order to validate information transmitted between these parties.
A MAC mechanism that is based on cryptographic hash functions is referred to as HMAC. HMAC can be used with any cryptographic hash function, e.g., SHA256 or SHA384, in combination with a secret shared key. HMAC is specified in RFC 2104.
Every implementation of the Java platform is required to support the following standard Mac
algorithms:
HmacSHA1
HmacSHA256
- Since:
- 1.4
Constructor Summary
Constructors Modifier Constructor Description protected
Mac(MacSpi macSpi,Provider provider,String algorithm)
Method Summary
Modifier and Type Method Description Object
clone()
Returns a clone if the provider implementation is cloneable.byte[]
doFinal()
byte[]
doFinal(byte[] input)
Processes the given array of bytes and finishes the MAC operation.void
doFinal(byte[] output,int outOffset)
String
getAlgorithm()
Returns the algorithm name of thisMac
object.static Mac
getInstance(String algorithm)
Returns aMac
object that implements the specified MAC algorithm.static Mac
getInstance(String algorithm,String provider)
Returns aMac
object that implements the specified MAC algorithm.static Mac
getInstance(String algorithm,Provider provider)
Returns aMac
object that implements the specified MAC algorithm.int
getMacLength()
Provider
getProvider()
Returns the provider of thisMac
object.void
init(Key key)
void
init(Key key,AlgorithmParameterSpec params)
Initializes thisMac
object with the given key and algorithm parameters.void
reset()
void
update(byte input)
Processes the given byte.void
update(byte[] input)
void
update(byte[] input,int offset,int len)
Processes the firstlen
bytes ininput
, starting atoffset
inclusive.void
update(ByteBuffer input)
Processesinput.remaining()
bytes in the ByteBufferinput
, starting atinput.position()
.Methods declared in class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Constructor Details
Mac
protectedMac(MacSpi macSpi,Provider provider,String algorithm)- Parameters:
macSpi
- the delegateprovider
- the provideralgorithm
- the algorithm
Method Details
getAlgorithm
public finalStringgetAlgorithm()Returns the algorithm name of thisMac
object.This is the same name that was specified in one of the
getInstance
calls that created thisMac
object.- Returns:
- the algorithm name of this
Mac
object.
getInstance
public static finalMacgetInstance(String algorithm) throws NoSuchAlgorithmExceptionReturns aMac
object that implements the specified MAC algorithm.This method traverses the list of registered security Providers, starting with the most preferred Provider. A new Mac object encapsulating the MacSpi implementation from the first Provider that supports the specified algorithm is returned.
Note that the list of registered providers may be retrieved via the
Security.getProviders()
method.- Implementation Note:
- The JDK Reference Implementation additionally uses the
jdk.security.provider.preferred
Security
property to determine the preferred provider order for the specified algorithm. This may be different than the order of providers returned bySecurity.getProviders()
. - Parameters:
algorithm
- the standard name of the requested MAC algorithm. See the Mac section in the Java Security Standard Algorithm Names Specification for information about standard algorithm names.- Returns:
- the new
Mac
object - Throws:
NoSuchAlgorithmException
- if noProvider
supports aMacSpi
implementation for the specified algorithmNullPointerException
- ifalgorithm
isnull
- See Also:
Provider
getInstance
public static finalMacgetInstance(String algorithm,String provider) throws NoSuchAlgorithmException,NoSuchProviderExceptionReturns aMac
object that implements the specified MAC algorithm.A new Mac object encapsulating the MacSpi implementation from the specified provider is returned. The specified provider must be registered in the security provider list.
Note that the list of registered providers may be retrieved via the
Security.getProviders()
method.- Parameters:
algorithm
- the standard name of the requested MAC algorithm. See the Mac section in the Java Security Standard Algorithm Names Specification for information about standard algorithm names.provider
- the name of the provider.- Returns:
- the new
Mac
object - Throws:
IllegalArgumentException
- if theprovider
isnull
or emptyNoSuchAlgorithmException
- if aMacSpi
implementation for the specified algorithm is not available from the specified providerNoSuchProviderException
- if the specified provider is not registered in the security provider listNullPointerException
- ifalgorithm
isnull
- See Also:
Provider
getInstance
public static finalMacgetInstance(String algorithm,Provider provider) throws NoSuchAlgorithmExceptionReturns aMac
object that implements the specified MAC algorithm.A new Mac object encapsulating the MacSpi implementation from the specified Provider object is returned. Note that the specified Provider object does not have to be registered in the provider list.
- Parameters:
algorithm
- the standard name of the requested MAC algorithm. See the Mac section in the Java Security Standard Algorithm Names Specification for information about standard algorithm names.provider
- the provider.- Returns:
- the new
Mac
object - Throws:
IllegalArgumentException
- if theprovider
isnull
NoSuchAlgorithmException
- if aMacSpi
implementation for the specified algorithm is not available from the specifiedProvider
objectNullPointerException
- ifalgorithm
isnull
- See Also:
Provider
getProvider
Returns the provider of thisMac
object.- Returns:
- the provider of this
Mac
object.
getMacLength
Returns the length of the MAC in bytes.- Returns:
- the MAC length in bytes.
init
public finalvoidinit(Key key) throws InvalidKeyException- Parameters:
key
- the key.- Throws:
InvalidKeyException
- if the given key is inappropriate for initializing this MAC.
init
public finalvoidinit(Key key,AlgorithmParameterSpec params) throws InvalidKeyException,InvalidAlgorithmParameterExceptionInitializes thisMac
object with the given key and algorithm parameters.- Parameters:
key
- the key.params
- the algorithm parameters.- Throws:
InvalidKeyException
- if the given key is inappropriate for initializing this MAC.InvalidAlgorithmParameterException
- if the given algorithm parameters are inappropriate for this MAC.
update
public finalvoidupdate(byte input) throws IllegalStateException- Parameters:
input
- the input byte to be processed.- Throws:
IllegalStateException
- if thisMac
has not been initialized.
update
public finalvoidupdate(byte[] input) throws IllegalStateException- Parameters:
input
- the array of bytes to be processed.- Throws:
IllegalStateException
- if thisMac
has not been initialized.
update
public finalvoidupdate(byte[] input,int offset,int len) throws IllegalStateExceptionProcesses the firstlen
bytes ininput
, starting atoffset
inclusive.- Parameters:
input
- the input buffer.offset
- the offset ininput
where the input starts.len
- the number of bytes to process.- Throws:
IllegalStateException
- if thisMac
has not been initialized.
update
Processesinput.remaining()
bytes in the ByteBufferinput
, starting atinput.position()
. Upon return, the buffer's position will be equal to its limit; its limit will not have changed.- Parameters:
input
- the ByteBuffer- Throws:
IllegalStateException
- if thisMac
has not been initialized.- Since:
- 1.5
doFinal
public finalbyte[]doFinal() throws IllegalStateExceptionFinishes the MAC operation.A call to this method resets this
Mac
object to the state it was in when previously initialized via a call toinit(Key)
orinit(Key, AlgorithmParameterSpec)
. That is, the object is reset and available to generate another MAC from the same key, if desired, via new calls toupdate
anddoFinal
. (In order to reuse thisMac
object with a different key, it must be reinitialized via a call toinit(Key)
orinit(Key, AlgorithmParameterSpec)
.- Returns:
- the MAC result.
- Throws:
IllegalStateException
- if thisMac
has not been initialized.
doFinal
public finalvoiddoFinal(byte[] output,int outOffset) throws ShortBufferException,IllegalStateExceptionFinishes the MAC operation.A call to this method resets this
Mac
object to the state it was in when previously initialized via a call toinit(Key)
orinit(Key, AlgorithmParameterSpec)
. That is, the object is reset and available to generate another MAC from the same key, if desired, via new calls toupdate
anddoFinal
. (In order to reuse thisMac
object with a different key, it must be reinitialized via a call toinit(Key)
orinit(Key, AlgorithmParameterSpec)
.The MAC result is stored in
output
, starting atoutOffset
inclusive.- Parameters:
output
- the buffer where the MAC result is storedoutOffset
- the offset inoutput
where the MAC is stored- Throws:
ShortBufferException
- if the given output buffer is too small to hold the resultIllegalStateException
- if thisMac
has not been initialized.
doFinal
public finalbyte[]doFinal(byte[] input) throws IllegalStateExceptionProcesses the given array of bytes and finishes the MAC operation.A call to this method resets this
Mac
object to the state it was in when previously initialized via a call toinit(Key)
orinit(Key, AlgorithmParameterSpec)
. That is, the object is reset and available to generate another MAC from the same key, if desired, via new calls toupdate
anddoFinal
. (In order to reuse thisMac
object with a different key, it must be reinitialized via a call toinit(Key)
orinit(Key, AlgorithmParameterSpec)
.- Parameters:
input
- data in bytes- Returns:
- the MAC result.
- Throws:
IllegalStateException
- if thisMac
has not been initialized.
reset
Resets thisMac
object.A call to this method resets this
Mac
object to the state it was in when previously initialized via a call toinit(Key)
orinit(Key, AlgorithmParameterSpec)
. That is, the object is reset and available to generate another MAC from the same key, if desired, via new calls toupdate
anddoFinal
. (In order to reuse thisMac
object with a different key, it must be reinitialized via a call toinit(Key)
orinit(Key, AlgorithmParameterSpec)
.clone
public finalObjectclone() throws CloneNotSupportedExceptionReturns a clone if the provider implementation is cloneable.- Overrides:
clone
in classObject
- Returns:
- a clone if the provider implementation is cloneable.
- Throws:
CloneNotSupportedException
- if this is called on a delegate that does not supportCloneable
.- See Also:
Cloneable
Last updated: October 10, 2018
You can find Java version on Mac without running a Java applet in your web browser. Fortunately, there are a variety of methods to find the Java version on Mac. Below is a description of some of those methods. Also see Java Support in Safari 12.
Using Command Line in Terminal
Terminal is a program included with macOS that provides command line access to the operating system. Terminal is located under Applications folder -> Utilities folder. To find the Java version using command line, launch the Terminal application. Type or copy/paste the following line into the Terminal window:
/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java -version
The Java version will display as output in the Terminal window, and will look similar to the output below:
java version '1.8.0_40'
Java(TM) SE Runtime Environment (build 1.8.0_40-b27)
Java HotSpot(TM) 64-Bit Server VM (build 25.40-b25, mixed mode)
In this case, Java 8 Update 40 is the Java version installed on this Mac.
Using the Java Control Panel
You may find Java version on Mac using the Java Control Panel instead. For information about locating the Java Control Panel, please see the Where is the Mac Java Control Panel located article. Once you have launched the Java Control Panel, click the General tab.
In the section entitled About, click the About… button. A new About Java window will launch. Java version information will display within the window.
Welcome to the “Star Wars – Galactic Battlegrounds” for Mac game page. This page contains information + tools how to port Star Wars – Galactic Battlegrounds in a few simple steps (that even a noob can understand) so you can play it on your Mac using Crossover. Crossover makes it possible to play Windows on your Mac with just a few clicks! Star Wars: Galactic Battlegrounds (Mac abandonware from 2001). Star wars galactic battlegrounds free download - Star Wars Battlefront 1.2 Patch, LEGO Star Wars Saga, Star Wars Jedi Knight: Jedi Academy Update, and many more programs. However, it seems as if the game is accessible only to the WIndows console. It’s a shame because I remember that “Galactic Battlegrounds” and “Clone Campaigns” were also for the Macintosh when they were first released. I wish that they could be released for the Mac again because I don’t have a Windows computer at the moment, and it will be a long while until I have enough money to sustain myself.
In this case, Java 8 Update 40 is the Java version installed on this Mac.
The integrated KoreSound® Browser makes managing the KORE-configured presets easy. And just beneath the surface, MASSIVE’s overwhelming array of wavetable oscillators, versatile modulation options and bountiful filter and effects sections offer a sonic spectrum as broad as it is inspiring.Equipped with some 600 production-ready presets and multi-sounds, all crafted by leading artists and designers, you can start using MASSIVE immediately and without any fuss. Ni massive for mac. Fast search and filter functions let you find presets according to specific characteristics and attributes – a particularly musical and intuitive approach.On stage, MASSIVE is sure to grab the limelight. An array of special features makes it ideal for live performances. Razor-sharp leads that cut through the mix, even with grit and dirt piled high, set MASSIVE apart among analog style soft synths.
Using the Online Test Java Page
You may also test your Java online to determine which version of Java is installed on your Mac. To test Java on your Mac, visit the Test Java page provided by Oracle on its Java.comweb site. This utility will not only check your current Java installation, but will also remove old Java versions from your computer that may pose a security threat to your system. If your Java is working correctly, and no out-of-date Java versions are found, you will see the following notification accompanied by information about your Java installation and your computer:
As it states in the Verified Java Version web page, Java 8 Update 40 is installed on this Mac. If your Java is not working properly, the Test Java page displays additional configuration options that you may need to check, as well as download and installation instructions if needed.
What Is Java Update For Mac Operating System
Thank you for visiting Tech Help Knowledgebase to learn how to find Java version on Mac.
What Is Java Update For Mac Catalina
Tech Help Knowledgebase creates how-to articles and video tutorials for common issues, and provides technical support for the categories covered by our site.
Get Support.