Uses of Class
com.google.crypto.tink.tinkkey.KeyAccess
-
Packages that use KeyAccess Package Description com.google.crypto.tink com.google.crypto.tink.jwt com.google.crypto.tink.tinkkey -
-
Uses of KeyAccess in com.google.crypto.tink
Methods in com.google.crypto.tink with parameters of type KeyAccess Modifier and Type Method Description KeysetManagerKeysetManager. add(KeyHandle keyHandle, KeyAccess access)Deprecated.We recommend to use theKeysetHandle.BuilderAPI.static KeysetHandleKeysetHandle. createFromKey(KeyHandle keyHandle, KeyAccess access)Deprecated.UseKeysetHandle.Builder.addEntryinstead. -
Uses of KeyAccess in com.google.crypto.tink.jwt
Methods in com.google.crypto.tink.jwt with parameters of type KeyAccess Modifier and Type Method Description static java.lang.StringJwkSetConverter. fromKeysetHandle(KeysetHandle handle, KeyAccess keyAccess)Deprecated.Use JwkSetConverter.fromPublicKeysetHandle(handle) instead.static KeysetHandleJwkSetConverter. toKeysetHandle(java.lang.String jwkSet, KeyAccess keyAccess)Deprecated.Use JwkSetConverter.toPublicKeysetHandle(jwkSet) instead. -
Uses of KeyAccess in com.google.crypto.tink.tinkkey
Methods in com.google.crypto.tink.tinkkey that return KeyAccess Modifier and Type Method Description static KeyAccessSecretKeyAccess. insecureSecretAccess()Returns aKeyAccessinstance wherecanAccessSecret()returns true.static KeyAccessKeyAccess. publicAccess()Returns aKeyAccessinstance wherecanAccessSecret()returns false.Methods in com.google.crypto.tink.tinkkey with parameters of type KeyAccess Modifier and Type Method Description static KeyHandleKeyHandle. createFromKey(TinkKey key, KeyAccess access)TinkKeyKeyHandle. getKey(KeyAccess access)Returns the underlyingTinkKeykey ifaccessis aSecretKeyAccessand the key has a secret, or if the key does not have a secret, otherwise throws aGeneralSecurityException.
-