Lines Matching refs:buffer_len
500 let buffer_len = encrypter.encrypt_len(&input).unwrap(); in rsa_encrypt_decrypt() localVariable
501 let mut encoded = vec![0u8; buffer_len]; in rsa_encrypt_decrypt()
507 let buffer_len = decrypter.decrypt_len(encoded).unwrap(); in rsa_encrypt_decrypt() localVariable
508 let mut decoded = vec![0u8; buffer_len]; in rsa_encrypt_decrypt()
529 let buffer_len = encrypter.encrypt_len(&input).unwrap(); in rsa_encrypt_decrypt_with_sha256() localVariable
530 let mut encoded = vec![0u8; buffer_len]; in rsa_encrypt_decrypt_with_sha256()
538 let buffer_len = decrypter.decrypt_len(encoded).unwrap(); in rsa_encrypt_decrypt_with_sha256() localVariable
539 let mut decoded = vec![0u8; buffer_len]; in rsa_encrypt_decrypt_with_sha256()
557 let buffer_len = encrypter.encrypt_len(&input).unwrap(); in rsa_encrypt_decrypt_oaep_label() localVariable
558 let mut encoded = vec![0u8; buffer_len]; in rsa_encrypt_decrypt_oaep_label()
565 let buffer_len = decrypter.decrypt_len(encoded).unwrap(); in rsa_encrypt_decrypt_oaep_label() localVariable
566 let mut decoded = vec![0u8; buffer_len]; in rsa_encrypt_decrypt_oaep_label()
573 let buffer_len = decrypter.decrypt_len(encoded).unwrap(); in rsa_encrypt_decrypt_oaep_label() localVariable
574 let mut decoded = vec![0u8; buffer_len]; in rsa_encrypt_decrypt_oaep_label()