MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / getEncoded

Method getEncoded

CodenameOne/src/com/codename1/security/Key.java:65–69  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

63 /// private keys as sensitive material -- do not log or store
64 /// unencrypted.
65 public final byte[] getEncoded() {
66 byte[] copy = new byte[encoded.length];
67 System.arraycopy(encoded, 0, copy, 0, encoded.length);
68 return copy;
69 }
70
71 /// Returns the algorithm this key is intended for (e.g. "AES", "RSA").
72 public final String getAlgorithm() {

Callers 15

signMethod · 0.80
verifyMethod · 0.80
getBitLengthMethod · 0.80
aesEncryptMethod · 0.80
aesDecryptMethod · 0.80
rsaEncryptMethod · 0.80
rsaDecryptMethod · 0.80
invoke0Method · 0.80
invoke1Method · 0.80
invoke2Method · 0.80
invoke9Method · 0.80
getSSLCertificatesMethod · 0.80

Calls 1

arraycopyMethod · 0.95

Tested by 1

generateRsaKeyPairMethod · 0.64