CryptoTab Browser is a special web browser with built-in mining features. Familiar Chrome user interface combined with extremely fast mining speed. Mine and browse at the same time! Cisdem AppCrypt- Best Website & App Encryption Software. Cisdem AppCrypt for Mac is rated as. 01 – Parity Windows macOS Docker Ubuntu. Parity Technologies is proud to present our.
- All Implemented Interfaces:
Cloneable
All Implemented Interfaces: Cloneable. Public class Mac extends Object implements 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. Crypto Apps - PcMac Store Here are some 'Crypto' For MacOS and PC you can download. Click on each application icon to download it to your computer. The download links provided should work for all Windows 10, 8.1, 8,7, Vista and XP devices. It also works great on all Mac operating systems.
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
Date: 08 October, 2012
Downloads: 9
Size: 187.0 MB
License: Demo
Problems with static passwords as a security measure are too numerous to list - hacked passwords have been used to gain access to some of the world s most sensitive networks.
Category: Servers / Other Server Applications
Date: 14 April, 2013
Downloads: 2
Size: 20.5 KB
License: Shareware
Category: Development / Other
Date: 08 September, 2012
Downloads: 0
Size: 80.0 KB
License: Freeware
Category: Games & Entertainment / Board
Date: 15 June, 2012
Downloads: 1
Size: 78.1 KB
License: Freeware
Category: Security & Privacy / Encryption Tools
Date: 07 June, 2012
Downloads: 0
Size: 8.1 KB
License: Freeware
Category: Security & Privacy / Encryption Tools
Date: 22 October, 2007
Downloads: 27
Size: 15.0 KB
License: Freeware
Category: Games & Entertainment / Puzzle & Word Games
Date: 09 September, 2008
Downloads: 0
Size: 15.0 KB
License: Freeware
Category: Games & Entertainment / Puzzle & Word Games
Date: 11 September, 2012
Downloads: 5
Size: 14.4 KB
License: Freeware
Category: Security & Privacy / Encryption Tools
Date: 28 June, 2012
Downloads: 1
Size: 706.9 KB
License: Freeware
Category: Business / Other
Date: 11 October, 2012
Downloads: 1
Size: 2.3 MB
License: Freeware
Category: Security & Privacy / Encryption Tools
Date: 24 May, 2012
Downloads: 1
Size: 141.7 KB
License: Freeware
Category: Communications / Other Comms Tools
Date: 15 June, 2012
Downloads: 0
Size: 15.8 MB
License: Freeware
Category: Business / Accounting & Finance
Date: 06 August, 2012
Downloads: 0
Size: 149.0 KB
License: Freeware
Category: Security & Privacy / Encryption Tools
Date: 25 June, 2012
Downloads: 0
Size: 3.0 MB
License: Freeware
Category: Security & Privacy / Encryption Tools
Date: 28 August, 2012
Downloads: 3
Size: 2.5 MB
License: Freeware
Category: Security & Privacy / Password Managers
Date: 10 July, 2012
Downloads: 0
Size: 52.8 KB
License: Freeware
Crypto For Money
Category: Security & Privacy / Encryption Tools
Date: 29 May, 2013
Downloads: 0
Size: 10.2 KB
License: Freeware
Category: Development / Components & Libraries
Date: 24 March, 2013
Downloads: 0
Size: 122.9 KB
License: Freeware
Category: Security & Privacy / Other
Date: 06 January, 2009
Downloads: 27
Size: 768.0 KB
License: Demo
Category: Development / Components & Libraries
Date: 04 September, 2012
Downloads: 1
Size: 61.3 KB
License: Freeware
Category: Security & Privacy / Encryption Tools
Date: 16 May, 2012
Downloads: 0
Size: 1.7 MB
License: Shareware
Category: Security & Privacy / Other
Date: 10 May, 2013
Downloads: 0
Size: 6.5 MB
License: Freeware
Category: Development / Components & Libraries
Date: 04 June, 2013
Downloads: 1
Size: 3.6 MB
License: Freeware
Category: Development / Other
Date: 06 July, 2013
Downloads: 0
Size: 122.9 KB
License: Freeware
Category: Development / Other
Date: 27 June, 2009
Downloads: 504
Size: 533.8 KB
License: Freeware
Category: Security & Privacy / Encryption Tools
Iis Crypto For Mac
Crypto For Credit Cards
Crypto For Kids
Crypto Mining Software For Mac
Apple Computer, Inc. in no way endorses or is affiliated with MacShareware.com.
Apple, the Apple logo, and Macintosh are registered trademarks and Mac OS is a trademark of Apple Computer, Inc.