Security provider listΒΆ

Note

You can find these scripts inside the folder pmis/STND_PMIS/test/console/example.
If you want to execute them, you can use the Jython Console from the devtool menu.

filename => ex26.py

from java.security import Security

pl =  Security.getProviders()

for p in pl:
    print p

    for s in p.getServices():
        if s.type == 'Cipher':
                print ' ' + s.getAlgorithm()
                #print '        '+s.type