[]Struct jni_android_sys::android::security::keystore::KeyProperties

#[repr(transparent)]
pub struct KeyProperties(_);

public class KeyProperties

Required feature: "android-security-keystore-KeyProperties"

Methods

impl KeyProperties

pub const BLOCK_MODE_CBC: &'static str[src]

public static final BLOCK_MODE_CBC

pub const BLOCK_MODE_CTR: &'static str[src]

public static final BLOCK_MODE_CTR

pub const BLOCK_MODE_ECB: &'static str[src]

public static final BLOCK_MODE_ECB

pub const BLOCK_MODE_GCM: &'static str[src]

public static final BLOCK_MODE_GCM

pub const DIGEST_MD5: &'static str[src]

public static final DIGEST_MD5

pub const DIGEST_NONE: &'static str[src]

public static final DIGEST_NONE

pub const DIGEST_SHA1: &'static str[src]

public static final DIGEST_SHA1

pub const DIGEST_SHA224: &'static str[src]

public static final DIGEST_SHA224

pub const DIGEST_SHA256: &'static str[src]

public static final DIGEST_SHA256

pub const DIGEST_SHA384: &'static str[src]

public static final DIGEST_SHA384

pub const DIGEST_SHA512: &'static str[src]

public static final DIGEST_SHA512

pub const ENCRYPTION_PADDING_NONE: &'static str[src]

public static final ENCRYPTION_PADDING_NONE

pub const ENCRYPTION_PADDING_PKCS7: &'static str[src]

public static final ENCRYPTION_PADDING_PKCS7

pub const ENCRYPTION_PADDING_RSA_OAEP: &'static str[src]

public static final ENCRYPTION_PADDING_RSA_OAEP

pub const ENCRYPTION_PADDING_RSA_PKCS1: &'static str[src]

public static final ENCRYPTION_PADDING_RSA_PKCS1

pub const KEY_ALGORITHM_3DES: &'static str[src]

Deprecated

public static final KEY_ALGORITHM_3DES

pub const KEY_ALGORITHM_AES: &'static str[src]

public static final KEY_ALGORITHM_AES

pub const KEY_ALGORITHM_EC: &'static str[src]

public static final KEY_ALGORITHM_EC

pub const KEY_ALGORITHM_HMAC_SHA1: &'static str[src]

public static final KEY_ALGORITHM_HMAC_SHA1

pub const KEY_ALGORITHM_HMAC_SHA224: &'static str[src]

public static final KEY_ALGORITHM_HMAC_SHA224

pub const KEY_ALGORITHM_HMAC_SHA256: &'static str[src]

public static final KEY_ALGORITHM_HMAC_SHA256

pub const KEY_ALGORITHM_HMAC_SHA384: &'static str[src]

public static final KEY_ALGORITHM_HMAC_SHA384

pub const KEY_ALGORITHM_HMAC_SHA512: &'static str[src]

public static final KEY_ALGORITHM_HMAC_SHA512

pub const KEY_ALGORITHM_RSA: &'static str[src]

public static final KEY_ALGORITHM_RSA

pub const ORIGIN_GENERATED: i32[src]

public static final ORIGIN_GENERATED

pub const ORIGIN_IMPORTED: i32[src]

public static final ORIGIN_IMPORTED

pub const ORIGIN_SECURELY_IMPORTED: i32[src]

public static final ORIGIN_SECURELY_IMPORTED

pub const ORIGIN_UNKNOWN: i32[src]

public static final ORIGIN_UNKNOWN

pub const PURPOSE_DECRYPT: i32[src]

public static final PURPOSE_DECRYPT

pub const PURPOSE_ENCRYPT: i32[src]

public static final PURPOSE_ENCRYPT

pub const PURPOSE_SIGN: i32[src]

public static final PURPOSE_SIGN

pub const PURPOSE_VERIFY: i32[src]

public static final PURPOSE_VERIFY

pub const PURPOSE_WRAP_KEY: i32[src]

public static final PURPOSE_WRAP_KEY

pub const SIGNATURE_PADDING_RSA_PKCS1: &'static str[src]

public static final SIGNATURE_PADDING_RSA_PKCS1

pub const SIGNATURE_PADDING_RSA_PSS: &'static str[src]

public static final SIGNATURE_PADDING_RSA_PSS

Methods from Deref<Target = Object>

pub fn getClass<'env>(
    &'env self
) -> Result<Option<Local<'env, Class>>, Local<'env, Throwable>>
[src]

getClass

Required features: "java-lang-Class"

pub fn hashCode<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn equals<'env>(
    &'env self,
    arg0: impl Into<Option<&'env Object>>
) -> Result<bool, Local<'env, Throwable>>
[src]

equals

Required features: "java-lang-Object"

pub fn toString<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

toString

Required features: "java-lang-String"

pub fn notify<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn notifyAll<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn wait_long<'env>(
    &'env self,
    arg0: i64
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn wait_long_int<'env>(
    &'env self,
    arg0: i64,
    arg1: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn wait<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

Trait Implementations

impl AsJValue for KeyProperties

impl AsValidJObjectAndEnv for KeyProperties

impl Deref for KeyProperties

type Target = Object

The resulting type after dereferencing.

impl JniType for KeyProperties

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.