I’m sorry this happened to you, Saad Khan, especially with personal photos involved.
You're doing correct things by keeping the disk untouched, so if the data on it is irreplaceable, the safest approach is to stop experimenting and have a reputable forensic data-recovery service create a sector-by-sector image first. Recovery attempts should then be performed against the image or a clone.
Having the correct 48-digit recovery password is important, but it does not guarantee recovery after formatting. BitLocker also needs readable volume metadata to locate and decrypt the volume’s encryption keys. Still, Microsoft does offer a official disaster-recovery utility, which is repair-bde. Let's check first whether Windows still detects BitLocker:
- Connect the disk as a secondary drive, open Command Prompt as Administrator
- Run manage-bde -status and identify the formatted volume
- If Windows still reports the affected volume as BitLocker-protected, try:
- Enter
manage-bde -unlock X: -recoverypassword ENTER_YOUR_KEY_HERE - Replace
X:with the volume letter and use your valid 48-digit key. - The password must be written exactly as saved, including dashes.
- Enter
- If it fails, you will need to use repair-bde and an empty destination volume.
- Run
repair-bde X: Y: -rp ENTER_YOUR_KEY_HERE -lf C:\repair-bde.log -
X:is the damaged/formatted BitLocker volume. -
Y:is a separate empty destination volume.
- Run
If it requests a key package, it means the remaining on-disk BitLocker metadata is not sufficient. Microsoft documents that a key package may be necessary when BitLocker metadata is corrupt, and that such packages may be backed up in Active Directory Domain Services in managed environments.
If you have it, you can follow the instructions in the article I linked above. Unfortunately, if this was a personal, unmanaged computer and no matching key package was previously backed up, Microsoft Support cannot recreate the missing volume metadata or derive the FVEK solely from the recovery password.
repair-bde can attempt to recover and decrypt the BitLocker layer, but it does not guarantee that the original NTFS directory structure will be reconstructed. Given the value of the photos, I would avoid repeated trial-and-error attempts on the original drive. One unsuccessful step could overwrite data that is currently still recoverable.