What Is Java Update For Mac



Packagejavax.crypto

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
This class provides the functionality of a 'Message Authentication Code' (MAC) algorithm.

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
These algorithms are described in the Mac section of the Java Security Standard Algorithm Names Specification. Consult the release documentation for your implementation to see if any other algorithms are supported.
Since:
1.4
  • Constructor Summary

    Constructors
    ModifierConstructorDescription
    protected Mac​(MacSpi macSpi,Provider provider,String algorithm)
  • Method Summary

    Modifier and TypeMethodDescription
    Objectclone()
    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.
    voiddoFinal​(byte[] output,int outOffset)
    StringgetAlgorithm()
    Returns the algorithm name of this Mac object.
    static MacgetInstance​(String algorithm)
    Returns a Mac object that implements the specified MAC algorithm.
    static MacgetInstance​(String algorithm,String provider)
    Returns a Mac object that implements the specified MAC algorithm.
    static MacgetInstance​(String algorithm,Provider provider)
    Returns a Mac object that implements the specified MAC algorithm.
    intgetMacLength()
    ProvidergetProvider()
    Returns the provider of this Mac object.
    voidinit​(Key key)
    voidinit​(Key key,AlgorithmParameterSpec params)
    Initializes this Mac object with the given key and algorithm parameters.
    voidreset()
    voidupdate​(byte input)
    Processes the given byte.
    voidupdate​(byte[] input)
    voidupdate​(byte[] input,int offset,int len)
    Processes the first len bytes in input, starting at offset inclusive.
    voidupdate​(ByteBuffer input)
    Processes input.remaining() bytes in the ByteBuffer input, starting at input.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 delegate
      provider - the provider
      algorithm - the algorithm
  • Method Details

    • getAlgorithm

      public finalStringgetAlgorithm()
      Returns the algorithm name of this Mac object.

      This is the same name that was specified in one of the getInstance calls that created this Mac object.

      Returns:
      the algorithm name of this Mac object.
    • getInstance

      public static finalMacgetInstance​(String algorithm) throws NoSuchAlgorithmException
      Returns a Mac 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.preferredSecurity property to determine the preferred provider order for the specified algorithm. This may be different than the order of providers returned by Security.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 no Provider supports a MacSpi implementation for the specified algorithm
      NullPointerException - if algorithm is null
      See Also:
      Provider
    • getInstance

      public static finalMacgetInstance​(String algorithm,String provider) throws NoSuchAlgorithmException,NoSuchProviderException
      Returns a Mac 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 the provider is null or empty
      NoSuchAlgorithmException - if a MacSpi implementation for the specified algorithm is not available from the specified provider
      NoSuchProviderException - if the specified provider is not registered in the security provider list
      NullPointerException - if algorithm is null
      See Also:
      Provider
    • getInstance

      public static finalMacgetInstance​(String algorithm,Provider provider) throws NoSuchAlgorithmException
      Returns a Mac 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 the provider is null
      NoSuchAlgorithmException - if a MacSpi implementation for the specified algorithm is not available from the specified Provider object
      NullPointerException - if algorithm is null
      See Also:
      Provider
    • getProvider

      Returns the provider of this Mac 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,InvalidAlgorithmParameterException
      Initializes this Mac 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 this Mac has not been initialized.
    • update

      public finalvoidupdate​(byte[] input) throws IllegalStateException
      Parameters:
      input - the array of bytes to be processed.
      Throws:
      IllegalStateException - if this Mac has not been initialized.
    • update

      public finalvoidupdate​(byte[] input,int offset,int len) throws IllegalStateException
      Processes the first len bytes in input, starting at offset inclusive.
      Parameters:
      input - the input buffer.
      offset - the offset in input where the input starts.
      len - the number of bytes to process.
      Throws:
      IllegalStateException - if this Mac has not been initialized.
    • update

      Processes input.remaining() bytes in the ByteBuffer input, starting at input.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 this Mac has not been initialized.
      Since:
      1.5
    • doFinal

      public finalbyte[]doFinal() throws IllegalStateException
      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 to init(Key) or init(Key, AlgorithmParameterSpec). That is, the object is reset and available to generate another MAC from the same key, if desired, via new calls to update and doFinal. (In order to reuse this Mac object with a different key, it must be reinitialized via a call to init(Key) or init(Key, AlgorithmParameterSpec).

      Returns:
      the MAC result.
      Throws:
      IllegalStateException - if this Mac has not been initialized.
    • doFinal

      public finalvoiddoFinal​(byte[] output,int outOffset) throws ShortBufferException,IllegalStateException
      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 to init(Key) or init(Key, AlgorithmParameterSpec). That is, the object is reset and available to generate another MAC from the same key, if desired, via new calls to update and doFinal. (In order to reuse this Mac object with a different key, it must be reinitialized via a call to init(Key) or init(Key, AlgorithmParameterSpec).

      The MAC result is stored in output, starting at outOffset inclusive.

      Parameters:
      output - the buffer where the MAC result is stored
      outOffset - the offset in output where the MAC is stored
      Throws:
      ShortBufferException - if the given output buffer is too small to hold the result
      IllegalStateException - if this Mac has not been initialized.
    • doFinal

      public finalbyte[]doFinal​(byte[] input) throws IllegalStateException
      Processes 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 to init(Key) or init(Key, AlgorithmParameterSpec). That is, the object is reset and available to generate another MAC from the same key, if desired, via new calls to update and doFinal. (In order to reuse this Mac object with a different key, it must be reinitialized via a call to init(Key) or init(Key, AlgorithmParameterSpec).

      Parameters:
      input - data in bytes
      Returns:
      the MAC result.
      Throws:
      IllegalStateException - if this Mac has not been initialized.
    • reset

      Resets this Mac object.

      A call to this method resets this Mac object to the state it was in when previously initialized via a call to init(Key) or init(Key, AlgorithmParameterSpec). That is, the object is reset and available to generate another MAC from the same key, if desired, via new calls to update and doFinal. (In order to reuse this Mac object with a different key, it must be reinitialized via a call to init(Key) or init(Key, AlgorithmParameterSpec).

    • clone

      public finalObjectclone() throws CloneNotSupportedException
      Returns a clone if the provider implementation is cloneable.
      Overrides:
      clone in class Object
      Returns:
      a clone if the provider implementation is cloneable.
      Throws:
      CloneNotSupportedException - if this is called on a delegate that does not support Cloneable.
      See Also:
      Cloneable

Last updated: October 10, 2018

Java

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.

Mac 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.