update from Atlas

This commit is contained in:
Luciano Ramalho
2015-04-02 10:34:57 -03:00
parent 573e1a94c4
commit cf96836b60
28 changed files with 8 additions and 59 deletions

View File

@@ -0,0 +1,11 @@
from java.lang.reflect import Modifier
import Confidential
message = Confidential('top secret text')
fields = Confidential.getDeclaredFields()
for field in fields:
# list private fields only
if Modifier.isPrivate(field.getModifiers()):
field.setAccessible(True) # break the lock
print 'field:', field
print '\t', field.getName(), '=', field.get(message)