org.springframework.security.crypto.bcrypt.BCrypt.decode_base64()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(2.5k)|赞(0)|评价(0)|浏览(198)

本文整理了Java中org.springframework.security.crypto.bcrypt.BCrypt.decode_base64()方法的一些代码示例,展示了BCrypt.decode_base64()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。BCrypt.decode_base64()方法的具体详情如下:
包路径:org.springframework.security.crypto.bcrypt.BCrypt
类名称:BCrypt
方法名:decode_base64

BCrypt.decode_base64介绍

[英]Decode a string encoded using bcrypt's base64 scheme to a byte array. Note that this is not compatible with the standard MIME-base64 encoding.
[中]将使用bcrypt的base64方案编码的字符串解码为字节数组。请注意,这与标准MIME-base64编码兼容。

代码示例

代码示例来源:origin: spring-projects/spring-security

  1. saltb = decode_base64(real_salt, BCRYPT_SALT_LEN);

代码示例来源:origin: spring-projects/spring-security

  1. @Test(expected = IllegalArgumentException.class)
  2. public void decodingMustRequestMoreThanZeroBytes() {
  3. BCrypt.decode_base64("", 0);
  4. }

代码示例来源:origin: spring-projects/spring-security

  1. @Test
  2. public void decodingOnlyProvidesAvailableBytes() {
  3. assertThat(BCrypt.decode_base64("", 1)).isEmpty();
  4. assertThat(BCrypt.decode_base64("......", 3)).hasSize(3);
  5. assertThat(BCrypt.decode_base64("......", 4)).hasSize(4);
  6. assertThat(BCrypt.decode_base64("......", 5)).hasSize(4);
  7. }

代码示例来源:origin: org.springframework.security/spring-security-core

  1. saltb = decode_base64(real_salt, BCRYPT_SALT_LEN);

代码示例来源:origin: spring-projects/spring-security

  1. @Test
  2. public void decodingStopsWithFirstInvalidCharacter() {
  3. assertThat(BCrypt.decode_base64("....", 1)).hasSize(1);
  4. assertThat(BCrypt.decode_base64(" ....", 1)).isEmpty();
  5. }

代码示例来源:origin: spring-projects/spring-security

  1. @Test
  2. public void decodingCharsOutsideAsciiGivesNoResults() {
  3. byte[] ba = BCrypt.decode_base64("ππππππππ", 1);
  4. assertThat(ba).isEmpty();
  5. }

代码示例来源:origin: spring-projects/spring-security

  1. /**
  2. * Encode and decode each byte value in each position.
  3. */
  4. @Test
  5. public void testBase64EncodeDecode() {
  6. byte[] ba = new byte[3];
  7. for (int b = 0; b <= 0xFF; b++) {
  8. for (int i = 0; i < ba.length; i++) {
  9. Arrays.fill(ba, (byte) 0);
  10. ba[i] = (byte) b;
  11. String s = encode_base64(ba, 3);
  12. assertThat(s.length()).isEqualTo(4);
  13. byte[] decoded = BCrypt.decode_base64(s, 3);
  14. assertThat(decoded).isEqualTo(ba);
  15. }
  16. }
  17. }

代码示例来源:origin: org.springframework.security/spring-security-crypto

  1. saltb = decode_base64(real_salt, BCRYPT_SALT_LEN);

代码示例来源:origin: org.springframework.security/org.springframework.security.core

  1. saltb = decode_base64(real_salt, BCRYPT_SALT_LEN);

代码示例来源:origin: apache/servicemix-bundles

  1. saltb = decode_base64(real_salt, BCRYPT_SALT_LEN);

代码示例来源:origin: apache/servicemix-bundles

  1. saltb = decode_base64(real_salt, BCRYPT_SALT_LEN);

相关文章