![]() |
The Java Developers Almanac 1.4Order this book from Amazon. |
e467. Listing All Available Message Authentication Code (MAC) Key GeneratorsRetrieving the list of available MAC algorithms requires checking the services provided by all registered providers.// This method is implemented in e194 Listing All Available Cryptographic Services String[] names = getCryptoImpls("Mac");An example of the output: HmacSHA1 HmacMD5
e469. Generating a Message Authentication Code (MAC)
© 2002 Addison-Wesley. |