/docx4j-core/src/main/java/org/docx4j/org/apache/poi/poifs/crypt/standard/StandardEncryptionInfoBuilder.java

http://github.com/plutext/docx4j · Java · 128 lines · 81 code · 19 blank · 28 comment · 27 complexity · 0b2f70c8884639dc67864166c534f175 MD5 · raw file

  1. /* NOTICE: This file has been changed by Plutext Pty Ltd for use in docx4j.
  2. * The package name has been changed; there may also be other changes.
  3. *
  4. * This notice is included to meet the condition in clause 4(b) of the License.
  5. */
  6. /* ====================================================================
  7. Licensed to the Apache Software Foundation (ASF) under one or more
  8. contributor license agreements. See the NOTICE file distributed with
  9. this work for additional information regarding copyright ownership.
  10. The ASF licenses this file to You under the Apache License, Version 2.0
  11. (the "License"); you may not use this file except in compliance with
  12. the License. You may obtain a copy of the License at
  13. http://www.apache.org/licenses/LICENSE-2.0
  14. Unless required by applicable law or agreed to in writing, software
  15. distributed under the License is distributed on an "AS IS" BASIS,
  16. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. See the License for the specific language governing permissions and
  18. limitations under the License.
  19. ==================================================================== */
  20. package org.docx4j.org.apache.poi.poifs.crypt.standard;
  21. import java.io.IOException;
  22. //import org.docx4j.org.apache.poi.EncryptedDocumentException;
  23. import org.docx4j.org.apache.poi.EncryptedDocumentException;
  24. import org.docx4j.org.apache.poi.poifs.crypt.ChainingMode;
  25. import org.docx4j.org.apache.poi.poifs.crypt.CipherAlgorithm;
  26. import org.docx4j.org.apache.poi.poifs.crypt.EncryptionInfo;
  27. import org.docx4j.org.apache.poi.poifs.crypt.EncryptionInfoBuilder;
  28. import org.docx4j.org.apache.poi.poifs.crypt.HashAlgorithm;
  29. import org.docx4j.org.apache.poi.util.LittleEndianInput;
  30. public class StandardEncryptionInfoBuilder implements EncryptionInfoBuilder {
  31. EncryptionInfo info;
  32. StandardEncryptionHeader header;
  33. StandardEncryptionVerifier verifier;
  34. StandardDecryptor decryptor;
  35. StandardEncryptor encryptor;
  36. /**
  37. * initialize the builder from a stream
  38. */
  39. public void initialize(EncryptionInfo info, LittleEndianInput dis) throws IOException {
  40. this.info = info;
  41. @SuppressWarnings("unused")
  42. int hSize = dis.readInt();
  43. header = new StandardEncryptionHeader(dis);
  44. verifier = new StandardEncryptionVerifier(dis, header);
  45. if (info.getVersionMinor() == 2 && (info.getVersionMajor() == 3 || info.getVersionMajor() == 4)) {
  46. decryptor = new StandardDecryptor(this);
  47. }
  48. }
  49. /**
  50. * initialize the builder from scratch
  51. */
  52. public void initialize(EncryptionInfo info, CipherAlgorithm cipherAlgorithm, HashAlgorithm hashAlgorithm, int keyBits, int blockSize, ChainingMode chainingMode) {
  53. this.info = info;
  54. if (cipherAlgorithm == null) {
  55. cipherAlgorithm = CipherAlgorithm.aes128;
  56. }
  57. if (cipherAlgorithm != CipherAlgorithm.aes128 &&
  58. cipherAlgorithm != CipherAlgorithm.aes192 &&
  59. cipherAlgorithm != CipherAlgorithm.aes256) {
  60. throw new EncryptedDocumentException("Standard encryption only supports AES128/192/256.");
  61. }
  62. if (hashAlgorithm == null) {
  63. hashAlgorithm = HashAlgorithm.sha1;
  64. }
  65. if (hashAlgorithm != HashAlgorithm.sha1) {
  66. throw new EncryptedDocumentException("Standard encryption only supports SHA-1.");
  67. }
  68. if (chainingMode == null) {
  69. chainingMode = ChainingMode.ecb;
  70. }
  71. if (chainingMode != ChainingMode.ecb) {
  72. throw new EncryptedDocumentException("Standard encryption only supports ECB chaining.");
  73. }
  74. if (keyBits == -1) {
  75. keyBits = cipherAlgorithm.defaultKeySize;
  76. }
  77. if (blockSize == -1) {
  78. blockSize = cipherAlgorithm.blockSize;
  79. }
  80. boolean found = false;
  81. for (int ks : cipherAlgorithm.allowedKeySize) {
  82. found |= (ks == keyBits);
  83. }
  84. if (!found) {
  85. throw new EncryptedDocumentException("KeySize "+keyBits+" not allowed for Cipher "+cipherAlgorithm.toString());
  86. }
  87. header = new StandardEncryptionHeader(cipherAlgorithm, hashAlgorithm, keyBits, blockSize, chainingMode);
  88. verifier = new StandardEncryptionVerifier(cipherAlgorithm, hashAlgorithm, keyBits, blockSize, chainingMode);
  89. decryptor = new StandardDecryptor(this);
  90. encryptor = new StandardEncryptor(this);
  91. }
  92. public StandardEncryptionHeader getHeader() {
  93. return header;
  94. }
  95. public StandardEncryptionVerifier getVerifier() {
  96. return verifier;
  97. }
  98. public StandardDecryptor getDecryptor() {
  99. return decryptor;
  100. }
  101. public StandardEncryptor getEncryptor() {
  102. return encryptor;
  103. }
  104. public EncryptionInfo getEncryptionInfo() {
  105. return info;
  106. }
  107. }